summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-07 22:16:18 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-07 22:16:18 +0330
commit34099f0d7752a2fab5eadccfeb578b77b292c889 (patch)
tree31c628e40f802b58db8bb27d5a3d4a6ead7a57d7 /test
parent6bd439f35c1184f04488ee4f0db21632e1301b51 (diff)
add return
Diffstat (limited to 'test')
-rw-r--r--test/main.felan6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/main.felan b/test/main.felan
index f290585..969281c 100644
--- a/test/main.felan
+++ b/test/main.felan
@@ -1,8 +1,8 @@
main :: () -> void {
- print_u64;
+ print_u64 fun() + 4 + 5;
};
fun :: ()->u64 {
- return 23;
-}
+ return 123;
+};