mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
10 lines
108 B
TypeScript
10 lines
108 B
TypeScript
//! test_output(42)
|
|
|
|
export default function () {
|
|
try {
|
|
return 37;
|
|
} finally {
|
|
return 42;
|
|
}
|
|
}
|