mers/mers/tests/destructuring_assignment.mers
mark f7feb688e8 order of operations, tests, VSingleType::Function
- moved && and || in order of operations to make a == b && c == d work as expected
- added some .mers files to mers/tests
- changed VSingleType::Function (setup for future type system changes)
2023-06-06 03:09:39 +02:00

4 lines
69 B
Plaintext

[a, [b, c]] := [1, ["str", 12.5]]
a == 1 && b == "str" && c == 12.5