https://github.com/kripken/emscripten
Raw File
Tip revision: bec6d1c1c1c982ecba787b8d51907d2ba51e6555 authored by Alon Zakai on 11 October 2019, 16:12:15 UTC
1.38.48
Tip revision: bec6d1c
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