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

5 lines
89 B
CoffeeScript
Raw Normal View History

identity_wrap: x => => x..
result: identity_wrap(identity_wrap(true))()()
print(result)