Arbor icon indicating copy to clipboard operation
Arbor copied to clipboard

implement simple function definitions

Open radding opened this issue 7 years ago • 0 comments

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;

radding avatar Nov 06 '17 17:11 radding