summaryrefslogtreecommitdiff
path: root/test.nl
diff options
context:
space:
mode:
Diffstat (limited to 'test.nl')
-rw-r--r--test.nl19
1 files changed, 0 insertions, 19 deletions
diff --git a/test.nl b/test.nl
deleted file mode 100644
index 5e23bf3..0000000
--- a/test.nl
+++ /dev/null
@@ -1,19 +0,0 @@
-type int = i32;
-type char = i8;
-
-int glob;
-
-int main(int argc, ptr(char) argv) {
- glob = 10;
- int kaas = glob + 2;
- glob = 2 > 1 || 1 == 1 % 10;
- while (glob < 20) {
- if (kaas == 12) glob = glob + 3 / 2;
- else glob = glob - 1;
- if (glob < -10) return glob;
- if (glob < -12) {
- return glob;
- } else {}
- }
- return kaas;
-}