NFun
NFun copied to clipboard
Use '->' syntax instead of ':' when specify return type of function
# old syntax
myFun(a:int, b:int):real = ...
# new syntax:
myFun(a:int, b:int)->real = ...
Old syntax still has to be valid.