summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-12 09:19:32 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-12 09:19:32 +0330
commit217b2c70adfd60756591dd6b06b60279f805a596 (patch)
treec3855291e212b6beb990fa128968fc1a95e00d42 /test
parentdecaf9321cbf119d1efea0c4667f49b0ab2e8c96 (diff)
fix circular dependency problem
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 6879dd2..e1aeb2e 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,9 +1,9 @@
main :: () -> void {
- a := fun(-2, 3,);
+ a := fun(-2, t,);
print(a);
};
-t :: fun(1,2);
+t :: 5+4;
fun :: (a:u64, b:u64)->u64 {
return a+b;