1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--coffeescript/test/fixtures/execution/test_chained_calls.coffee

5 lines
87 B
CoffeeScript
Raw Normal View History

2009-12-28 23:08:02 -05:00
identity_wrap: x => => x
result: identity_wrap(identity_wrap(true))()()
print(result)