ref: 0c475a0c82f93c48c82e95bf52fb5a3fe59a96c1 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) }