mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-05-10 03:00:06 -04:00
Fix multiAssignment
This commit is contained in:
9
inputs/passing/multiAssignment.ts
Normal file
9
inputs/passing/multiAssignment.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
// test_output! [1,1]
|
||||
|
||||
export default function main() {
|
||||
let a;
|
||||
let b;
|
||||
a = b = 1;
|
||||
|
||||
return [a, b];
|
||||
}
|
||||
Reference in New Issue
Block a user