jashkenas--coffeescript/documentation/examples/expressions_try.coffee

7 lines
93 B
CoffeeScript
Raw Normal View History

2010-01-05 03:19:45 +00:00
alert(
try
nonexistent / undefined
catch error
"And the error is ... #{error}"
2010-12-13 02:41:04 +00:00
)