shithub: mc

ref: 979a0dd6fec80a4fe66ced0b5e2ba30cd574abc1
dir: /test/struct1.myr/

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

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