summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/main.felan8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/main.felan b/test/main.felan
index d78dfdf..cbbc0ef 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,7 +1,9 @@
main :: () -> void {
- print_u64 a;
+ print_u64 b;
+ b = 3;
+ print_u64 b;
+ b = 7;
print_u64 b;
};
-a := 123;
-b :: 124;
+b := 124;