diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-11 15:03:52 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-11 15:03:52 +0330 |
commit | 36b54e168fd18e7207860b7434a922e71475e96e (patch) | |
tree | 47915eeafa36f697f5b6dcce06a5465fad89b3d0 /code | |
parent | cb92cc5df12a77be438801bc5f80bcdea853fce7 (diff) |
more function overloading support
Diffstat (limited to 'code')
-rw-r--r-- | code/main.felan | 2 |
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(); }; |