blob: 909f9180d76b568753abfdbc6a676a989d8eeb9a [file] [log] [blame]
# lex_token.py
#
# tokens is right type, but is missing a token for one rule
import lex
tokens = [
"PLUS",
"NUMBER",
]
t_PLUS = r'\+'
t_MINUS = r'-'
t_NUMBER = r'\d+'
def t_error(t):
pass
import sys
sys.tracebacklimit = 0
lex.lex()