Files
ValueScript/concept-code/exceptions/tryFinally.ts
2023-03-22 16:37:11 +11:00

8 lines
113 B
TypeScript

export default function () {
try {
throw new Error("Something went wrong");
} finally {
1 + 1;
}
}