You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I like your approach to build a language leveraging great parts of JS.
Wondering if you have any plans to add
function overload
multi-dispatch or extension methods? Basically it's the same as function overload but for multiple modules, so functions with same names defined in different modules would be overloaded properly.
Example
let add = (x: int, y: int): int => x + y
let add = (x: string, y: string): string => "hi" ++ x ++ y