shithub: mc

ref: 6f83d942aeb7c284341be7b1e514d994cc17b715
dir: /test/struct1.myr/

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

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