https://github.com/kripken/emscripten
Raw File
Tip revision: a1964c71a8b11e40ba46b5c542d4d27d6a72ff60 authored by Alon Zakai on 24 July 2019, 17:52:47 UTC
Make read, readAsync, readBinary, setWindowTitle normal JS variables (#9047)
Tip revision: a1964c7
emcmake
#!/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

if __name__ == '__main__':
  python_selector.run(__file__)
back to top