ref: e91e8cce466408f4a45222c0b57a4261de87545c dir: /test/struct.myr/
type pair = struct a : int b : int ;; const main = { var s : pair s.a = 12 s.b = 30 -> s.a + s.b }