summaryrefslogtreecommitdiff
path: root/test/lex_empty.py
blob: e0368bfadc0bfcf11fbcc9784656fac588a629d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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()