summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-13 15:09:19 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-13 15:09:19 +0330
commit441519c4cf0ba7b4d63a2cd761e5553ea925de32 (patch)
tree24f0cf3a8b0bcabcd1786c7e6a7820e7d11e05c1 /test
parent142d889fc769532cae922c7ac4b0e80423d671d1 (diff)
add i64
Diffstat (limited to 'test')
-rw-r--r--test/main.felan4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/main.felan b/test/main.felan
index 6144858..a52421a 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,7 +1,9 @@
main :: () -> void {
b := false;
+ a := 2;
+ c : u64 = 5;
if b
print_u64 2;
else
- print_u64 3;
+ print_u64 c;
};