summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-08 02:16:05 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-08 02:16:05 +0330
commit1460877dca47ab740eef3a5529cd30008e1a27a5 (patch)
treed02752f617157d0cfd3d037bd69280e0acd094b3 /test
parent1b8c8fb55ae5a2bc48951b65b01eb83d75ab4715 (diff)
add const check
fix some bugs
Diffstat (limited to 'test')
-rw-r--r--test/main.felan2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/main.felan b/test/main.felan
index a3aea7a..3afe119 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,5 +1,5 @@
main :: () -> void {
- a := fun();
+ a : u64 = fun();
a = a + 3;
print_u64 a + 5;
};