shithub: mc

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

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

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