mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-11 22:48:01 -05:00
9 lines
118 B
TypeScript
9 lines
118 B
TypeScript
//! test_output("foobar")
|
|
|
|
export default function () {
|
|
let str = "bar";
|
|
str = `${"foo"}${str}`;
|
|
|
|
return str;
|
|
}
|