summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/main.felan7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/main.felan b/test/main.felan
index 1adc1dd..3f1ef4c 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,9 +1,10 @@
main :()->void: () -> void {
a :: 3;
- print_u64 a;
- c :: 4;
- print_u64 b;
+ c :: a;
print_u64 c;
+ print_u64 b;
+ print_u64 a;
};
+
a :: 1;
b :: 2;