shithub: mc

ref: 7194b269261dae309e23a8c1639d35d536fea361
dir: /test/struct1.myr/

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

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