4 lines
52 B
CoffeeScript
4 lines
52 B
CoffeeScript
((x)->
|
|
2 + x(-> 5)
|
|
)((y) -> y()+3)
|
|
# result: 10
|