roc/test/snapshots/repl/deeply_nested_polymorphic_functions.md
2025-11-27 22:27:32 -05:00

267 B

META

description=Deeply nested polymorphic function calls with multiple levels
type=repl

SOURCE

» (|twice, identity| { a: twice(identity, 42), b: twice(|x| x + 1, 100) })(|f, val| f(f(val)), |x| x)

OUTPUT

{ a: 42, b: 102 }

PROBLEMS

NIL