rcl/golden/json/function_first_class.test
2023-11-30 19:45:26 +01:00

5 lines
79 B
Text

let apply_twice = (f, x) => f(f(x));
apply_twice(x => x * x, 4)
# output:
256