mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 07:57:57 -05:00
24 lines
273 B
TypeScript
24 lines
273 B
TypeScript
//! test_output("this thing")
|
|
|
|
export default function () {
|
|
while (true) {
|
|
try {
|
|
try {
|
|
return "this thing";
|
|
} finally {
|
|
1 + 1;
|
|
}
|
|
} finally {
|
|
2 + 2;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
try {
|
|
} finally {
|
|
}
|
|
|
|
return "that thing";
|
|
}
|