mirror of
https://github.com/Haskell-Things/ImplicitCAD.git
synced 2024-11-04 01:26:48 +03:00
5 lines
80 B
Plaintext
5 lines
80 B
Plaintext
// Example9.escad -- function currying.
|
|
f = max(4);
|
|
echo(f(5));
|
|
echo(max(4,5));
|