https://github.com/kripken/emscripten
Raw File
Tip revision: c623c9c5cd92b709762fe29a2a7b6abcc6745abd authored by Alon Zakai (kripken) on 17 January 2019, 14:37:40 UTC
1.38.24
Tip revision: c623c9c
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