ref: 18da4d07e56cdbc6f6e170c4023c4c7d9ca0bd3e 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) }