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
Luis Albizo edited this page Aug 29, 2018
·
15 revisions
Strings
Lists
Lambdas
A lambda expression or an 'anonymous function is a reducted syntaxis to create a function, a lambda just need a list of arguments and an expression, it automaticaly returns the result of that expresion.
$1 := func { x, y : x + y },
$2 := func { f, x : func { y : f(x, y) } };