Espruino/tests/test_exception_1.js
2014-06-13 16:51:27 +01:00

8 lines
103 B
JavaScript

try {
result = 1;
throw "Oh Noes!";
result = 0;
} finally {
console.log("Finally executed");
}