mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 06:58:22 -05:00
10 lines
108 B
TypeScript
10 lines
108 B
TypeScript
//! test_output([1,1])
|
|
|
|
export default function main() {
|
|
let a;
|
|
let b;
|
|
a = b = 1;
|
|
|
|
return [a, b];
|
|
}
|