about summary refs log tree commit diff
path: root/lib/Ast.ml
diff options
context:
space:
mode:
authorMalte Voos <git@mal.tc>2024-02-11 18:21:52 +0100
committerMalte Voos <git@mal.tc>2024-02-11 18:21:52 +0100
commit2bc6cae2458ba5f9573985791536618a00cbed8a (patch)
tree79fe6de0db9a262705a8dd3898ed739717829e5c /lib/Ast.ml
downloadtoytt-2bc6cae2458ba5f9573985791536618a00cbed8a.tar.gz
toytt-2bc6cae2458ba5f9573985791536618a00cbed8a.zip
init
Diffstat (limited to 'lib/Ast.ml')
-rw-r--r--lib/Ast.ml8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Ast.ml b/lib/Ast.ml
new file mode 100644
index 0000000..4ca7899
--- /dev/null
+++ b/lib/Ast.ml
@@ -0,0 +1,8 @@
+type expr' =
+  | Var of string
+| Bool
+| True
+| False
+| BoolElim of string
+
+type expr = expr' Asai.Range.located
\ No newline at end of file