monk/ply/test/lex_empty.py

21 lines
192 B
Python
Raw Normal View History

2013-12-22 18:55:48 +01:00
# lex_empty.py
#
# No rules defined
import sys
if ".." not in sys.path: sys.path.insert(0,"..")
import ply.lex as lex
tokens = [
"PLUS",
"MINUS",
"NUMBER",
]
lex.lex()