ref: b3124cebe026211ed88adc1dc1d7f09f74f45d35
dir: /test/uconinit.myr/
use std type u = union `A `B `C int ;; const a = [`A, `B, `C 123] const main = { for v in a match v | `A: std.put("A ") | `B: std.put("B ") | `C x: std.put("C {}\n", x) ;; ;; std.put("\n") }