summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-09-25 14:37:19 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-09-25 14:37:19 -0400
commit53a2729e91e2df2672e01c15ba8cb24544843827 (patch)
treebe395d8caef0227e9b599d36ff2d6c97fe09a4c8 /test.toc
parent8fb5c29a7ae2be9816de07eadd4dd363895b74be (diff)
added bools
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc4
1 files changed, 4 insertions, 0 deletions
diff --git a/test.toc b/test.toc
index af97878..aa89df9 100644
--- a/test.toc
+++ b/test.toc
@@ -1,4 +1,8 @@
main @= fn() {
foo @= fn(x: int) { return; };
+ //b := !(5 > 3 && 4 <= 3 && 3 >= 2 || 0);
+ //b := !(5 < 3);
+ x : bool = true;
+
};