https://github.com/kripken/emscripten
Raw File
Tip revision: e1f53a27fe561a2fc43c4a256d849620516e23de authored by Dan Gohman on 24 July 2018, 00:19:25 UTC
Merge pull request #5916 from sunfishcode/size_t-long
Tip revision: e1f53a2
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