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