summaryrefslogtreecommitdiff
path: root/ipl/packs/tcll1/ea_nll1.grm
blob: 56f0535680857d1fad513724b0af6c94e5a9c44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# ea-nll1.grm
# action symbols
# not LL(1)

start = e .
e = e "+" t A!.
e = e "-" t S!.
e = t .
t = f "*" t M!.
t = f "/" t D!.
t = f .
f = i N!.
f = "(" e ")" P!.