mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
219 B
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