summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-23 22:36:54 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-23 22:36:54 +0330
commit36367beb40b69d66ba866be31878097eed70b6be (patch)
tree3f51e60b8c4cfdbb9d4c2006d249f1504e39651f /test
parentaf6a58bfad54dc9d3cb49d1efa1c90a5d094bcb1 (diff)
add more support for types
Diffstat (limited to 'test')
-rw-r--r--test/main.felan10
1 files changed, 1 insertions, 9 deletions
diff --git a/test/main.felan b/test/main.felan
index fa275e4..b453f6b 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,18 +1,10 @@
main :: () -> void {
- a := 2.3;
- a /= 2.5;
- print_u64 (if a == 1.15
- 1
- else
- 2);
- // test(u64,i64);
+ test(u64,i64);
};
-/*
test :: (from:type, to:type) -> void {
if from == to
print_u64 1234;
else
print_u64 4321;
};
-*/