blob: d277c644f29ea5a4bb233e27174ec839723c99bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* Test enhanced compose function */
f : x -> x * 2;
g : x -> x + 1;
h : x -> x * x;
/* Test enhanced compose with multiple functions */
result : compose(f, g, h) 2;
..out result;
|