shithub: mc

ref: 0a337df767ec5a911dfef3ca529406e2ad3c4462
dir: /test/struct1.myr/

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

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