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