mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 16:08:02 -05: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;
|
|
}
|