https://github.com/kripken/emscripten
Raw File
Tip revision: db53e59fd49e77ebd1a17dd6ce5214f19fd4b336 authored by Alon Zakai on 31 January 2019, 22:01:15 UTC
fix test
Tip revision: db53e59
emcc
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads the main code using
# python_selector, which may pick a different version.

from tools import python_selector

import sys

if __name__ == '__main__':
  python_selector.run(__file__)
back to top