ImplicitCAD/Examples/example9.escad

5 lines
80 B
Plaintext
Raw Normal View History

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