mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 07:57:57 -05:00
10 lines
119 B
TypeScript
10 lines
119 B
TypeScript
// test_output! 8
|
|
|
|
export default function () {
|
|
try {
|
|
throw [3, 5];
|
|
} catch ([a, b]) {
|
|
return a + b;
|
|
}
|
|
}
|