mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
13 lines
140 B
TypeScript
13 lines
140 B
TypeScript
//! test_output("Ok")
|
|
|
|
export default function () {
|
|
let result: string;
|
|
|
|
try {
|
|
} finally {
|
|
result = "Ok";
|
|
}
|
|
|
|
return result;
|
|
}
|