mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-19 03:44:23 -05:00
8 lines
159 B
CoffeeScript
8 lines
159 B
CoffeeScript
result: try
|
|
nonexistent * missing
|
|
catch error
|
|
true
|
|
|
|
result2: try nonexistent * missing catch error then true
|
|
|
|
print(result is true and result2 is true) |