mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 16:08:02 -05:00
10 lines
127 B
TypeScript
10 lines
127 B
TypeScript
// test_output! 42
|
|
|
|
export default function () {
|
|
try {
|
|
throw new Error("Test error");
|
|
} finally {
|
|
return 42;
|
|
}
|
|
}
|