about summary refs log tree commit diff
path: root/pkg/lang/ast/ast.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/lang/ast/ast.go')
-rw-r--r--pkg/lang/ast/ast.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/lang/ast/ast.go b/pkg/lang/ast/ast.go
new file mode 100644
index 0000000..43d0c28
--- /dev/null
+++ b/pkg/lang/ast/ast.go
@@ -0,0 +1,5 @@
+package ast
+
+type Program struct {
+	Stmts []Stmt[any]
+}
\ No newline at end of file