ref: 4a25c643a09bd41509f7b86c68e6164c91f5f3ee dir: /test/matcharray.myr/
use std const main = { var v = [2, 40, 10] match v | [x, y, 10]: std.exit(x + y) | _: std.die("Wat") ;; std.exit(0) }