https://github.com/kripken/emscripten
Raw File
Tip revision: 4965cf6f37702858425508cd571c9eb4f2791759 authored by Alon Zakai on 17 May 2018, 23:15:13 UTC
1.38.1
Tip revision: 4965cf6
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