mirror of
https://github.com/Dummi26/mers.git
synced 2025-03-10 22:37:46 +01:00

- 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)
4 lines
69 B
Plaintext
4 lines
69 B
Plaintext
[a, [b, c]] := [1, ["str", 12.5]]
|
|
|
|
a == 1 && b == "str" && c == 12.5
|