Files
ValueScript/concept-code/exceptions/finallyWithoutThrow.ts
2023-03-23 10:14:34 +11:00

11 lines
117 B
TypeScript

export default function () {
let result: string;
try {
} finally {
result = "Ok";
}
return result;
}