NFun
NFun copied to clipboard
Support 'return' keyword
allow to return values from function with 'return' value
f(x) =
m = x**2
return m-1
Allow to return values as output variable form equation
var f = Funny.Calc<double>("
x = 1
y = x*2 + 1
c = x+ y
return c
" )