shithub: mc

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

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

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