ref: c4b6a1c57ece9e02c05f046f4dd472f6d8c6ec6b dir: /test/struct.myr/
use std /* test reading and writing to struct members. exits with 42. */ type pair = struct a : int b : int ;; const main = { var s : pair s.a = 12 s.b = 30 -> s.a + s.b }