aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/global_constants_edgecase.sy
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/global_constants_edgecase.sy')
-rw-r--r--progs/tests/global_constants_edgecase.sy11
1 files changed, 0 insertions, 11 deletions
diff --git a/progs/tests/global_constants_edgecase.sy b/progs/tests/global_constants_edgecase.sy
deleted file mode 100644
index 8dba295..0000000
--- a/progs/tests/global_constants_edgecase.sy
+++ /dev/null
@@ -1,11 +0,0 @@
-// TODO(ed): Pure functions
-fac :: fn a: int -> int {
- if a < 1 { ret 1 }
- ret a * fac! a - 1
-}
-
-a :: fac! 4
-
-start :: fn {
- a <=> 24
-}