jashkenas--coffeescript/test/fixtures/execution/test_chained_calls.coffee

5 lines
87 B
CoffeeScript
Raw Normal View History

2009-12-29 04:08:02 +00:00
identity_wrap: x => => x
result: identity_wrap(identity_wrap(true))()()
print(result)