summaryrefslogtreecommitdiff
path: root/tests/lex_empty.py
blob: d0baf3108bb6f5eb26a5997a73cc0bb176aad841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# lex_empty.py
#
# No rules defined

import ply.lex as lex

tokens = [
    "PLUS",
    "MINUS",
    "NUMBER",
    ]



lex.lex()