mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 15:38:06 -05:00
18 lines
206 B
TypeScript
18 lines
206 B
TypeScript
//! test_output("that thing")
|
|
|
|
export default function () {
|
|
while (true) {
|
|
try {
|
|
return "this thing";
|
|
} finally {
|
|
break;
|
|
}
|
|
}
|
|
|
|
try {
|
|
} finally {
|
|
}
|
|
|
|
return "that thing";
|
|
}
|