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

219 B

META

description=Nested polymorphic function calls
type=repl

SOURCE

» (|identity| { a: identity(10), b: identity(20), c: identity(30) })(|x| x)

OUTPUT

{ a: 10, b: 20, c: 30 }

PROBLEMS

NIL