Revision 9b5fce21c296410c087628a5c0d7673299fadb85 authored by Alon Zakai on 02 November 2018, 21:59:56 UTC, committed by Alon Zakai on 02 November 2018, 21:59:56 UTC
1 parent af84d8d
Raw File
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