https://github.com/kripken/emscripten
Raw File
Tip revision: e584fa4f2e8458d8796043cbd0ed14f64a751981 authored by Alon Zakai (kripken) on 06 July 2018, 16:13:35 UTC
1.38.8
Tip revision: e584fa4
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