1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--coffeescript/documentation/js/expressions_try.js

10 lines
172 B
JavaScript
Raw Normal View History

2012-10-23 16:45:31 -04:00
// Generated by CoffeeScript 1.4.0
2010-12-23 15:41:42 -05:00
alert((function() {
2010-07-29 00:51:35 -04:00
try {
2010-11-21 12:38:27 -05:00
return nonexistent / void 0;
2010-07-29 00:51:35 -04:00
} catch (error) {
return "And the error is ... " + error;
}
})());