mers/mers_old/tests/destructuring_assignment.mers
2023-07-28 00:33:15 +02:00

4 lines
69 B
Plaintext
Executable File

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