mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
9 lines
125 B
TypeScript
9 lines
125 B
TypeScript
// test_output! undefined
|
|
|
|
export default function () {
|
|
try {
|
|
Math.sin(1);
|
|
throw new Error("boom");
|
|
} catch {}
|
|
}
|