Skip to content

Advanced Tutorial

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) } };

Reduce operator

Closures and the nonlocal keyword

Clone this wiki locally