summaryrefslogtreecommitdiff
path: root/ipl/packs/tcll1/e.grm
diff options
context:
space:
mode:
Diffstat (limited to 'ipl/packs/tcll1/e.grm')
-rw-r--r--ipl/packs/tcll1/e.grm5
1 files changed, 5 insertions, 0 deletions
diff --git a/ipl/packs/tcll1/e.grm b/ipl/packs/tcll1/e.grm
new file mode 100644
index 0000000..2a200db
--- /dev/null
+++ b/ipl/packs/tcll1/e.grm
@@ -0,0 +1,5 @@
+start = e .
+e = t { ("+" | "-") t } .
+t = f [ ("*" | "/") t ].
+f = i | "(" e ")" .
+