Arbor
Arbor copied to clipboard
implement simple function definitions
the statement should look like this:
(a, b, c) -> a + b + c;
This is functionally equivalent to
(a, b, c) ->
return a + b + c;
done;