https://github.com/kripken/emscripten
Raw File
Tip revision: 4f07905c0e2e6e3ba26c74327d4e14add9a1b3ba authored by Alon Zakai on 06 March 2020, 17:17:10 UTC
1.39.9
Tip revision: 4f07905
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