ImplicitCAD/Examples/example9.escad
2015-11-05 14:13:43 +00:00

5 lines
80 B
Plaintext

// Example9.escad -- function currying.
f = max(4);
echo(f(5));
echo(max(4,5));