mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
11 lines
139 B
TypeScript
11 lines
139 B
TypeScript
// test_output! [undefined,1]
|
|
// TODO: This is wrong.
|
|
|
|
export default function main() {
|
|
let a;
|
|
let b;
|
|
a = b = 1;
|
|
|
|
return [a, b];
|
|
}
|