ref: 24e4c23a889d9e7cc60e5da2bc9df0ec0f8ab04b
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")
}