Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/third_party/ply/test/lex_module.py
6169 views
1
# lex_module.py
2
#
3
4
import sys
5
if ".." not in sys.path: sys.path.insert(0,"..")
6
7
import ply.lex as lex
8
import lex_module_import
9
lex.lex(module=lex_module_import)
10
lex.runmain(data="3+4")
11
12