shithub: mc

ref: 5850140d219ed3f49c735c8933f752f25d2af0f3
dir: /test/struct1.myr/

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

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