shithub: mc

ref: e8c3f0ca6d64fc775d7a1578a84118b05829715a
dir: /test/struct1.myr/

View raw version
type val = struct
	a : int
;;

const main = {
	var s : val
	s.a = 12
	-> s.a
}