ref: 2c4eeb399845785a1dc317e4f2e3cb3c3c7c5370 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) }