summaryrefslogtreecommitdiff
path: root/code/main.felan
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-11 15:03:52 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-11 15:03:52 +0330
commit36b54e168fd18e7207860b7434a922e71475e96e (patch)
tree47915eeafa36f697f5b6dcce06a5465fad89b3d0 /code/main.felan
parentcb92cc5df12a77be438801bc5f80bcdea853fce7 (diff)
more function overloading support
Diffstat (limited to 'code/main.felan')
-rw-r--r--code/main.felan2
1 files changed, 2 insertions, 0 deletions
diff --git a/code/main.felan b/code/main.felan
index 1defd0b..47de67d 100644
--- a/code/main.felan
+++ b/code/main.felan
@@ -23,6 +23,8 @@ main :: () -> void {
print_rev(a);
print_rev(b);
print_rev();
+ c : ()->void = a;
+ c();
a();
};