aboutsummaryrefslogtreecommitdiff
path: root/grammar/expr.gr
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-05-13 15:45:50 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2025-05-13 15:45:50 +0200
commit76f808ea98313dc847f634b2d8e31066b7a1c68d (patch)
treeceead1140f66547bb26cd3af364d37913b380398 /grammar/expr.gr
parenteff19cc15a9bf4df60e7f90c3a7ee525c65266c0 (diff)
make it work sometimes
Diffstat (limited to 'grammar/expr.gr')
-rw-r--r--grammar/expr.gr9
1 files changed, 0 insertions, 9 deletions
diff --git a/grammar/expr.gr b/grammar/expr.gr
deleted file mode 100644
index 9705a4b..0000000
--- a/grammar/expr.gr
+++ /dev/null
@@ -1,9 +0,0 @@
-S -> B A
-A -> + B A
-A -> _
-B -> D C
-C -> * D C
-C -> _
-D -> ( S )
-D -> a
-D -> b