summaryrefslogtreecommitdiff
path: root/grammar
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-10 17:28:27 +0100
committerThomas Voss <mail@thomasvoss.com> 2026-03-10 17:28:27 +0100
commitf7b9ea9ccfd8be8c2633b4d02dbc3207c2e3d354 (patch)
tree192247c7d5b172fd315a8b4ac274f74df8dfa923 /grammar
parent3dcffaaa8e810c144751d3be66ff241762ab2c56 (diff)
Remove the module declaration
Diffstat (limited to 'grammar')
-rw-r--r--grammar3
1 files changed, 1 insertions, 2 deletions
diff --git a/grammar b/grammar
index 0bb9406..5fa2e73 100644
--- a/grammar
+++ b/grammar
@@ -1,6 +1,5 @@
-root: module-decl top-level*;
+root: top-level*;
-module-decl: "module" ident ";";
top-level: def-bind ";";
def-bind: "def" decl-list "=" expr-list;