https://github.com/kripken/emscripten
Raw File
Tip revision: 8f39b6c5f002ef50d80a32fa831c332909fa4397 authored by Alon Zakai on 20 May 2019, 16:38:48 UTC
1.38.32
Tip revision: 8f39b6c
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