summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-23 12:42:20 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-23 12:42:20 +0330
commit20f403c5e603cb7df92c67370eaa3a6119d3a166 (patch)
treed21ab8bf0009153e3f5e4a4b4055de85275936d9 /test
parent1bd43564b2edda3358e1b0ad9b83b64dfb59c0d9 (diff)
add += -= *= /= %=
Diffstat (limited to 'test')
-rw-r--r--test/main.felan4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/main.felan b/test/main.felan
index d8aec7a..ca2694c 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -2,11 +2,11 @@ main :: () -> void {
a :getType(i64,u64)= 0;
while a < 10 {
print_u64 a;
- a = a + 1;
+ a += 1;
}
};
-signed := false;
+signed :: false;
getType :: (a:type,b:type)->type {
if signed