shithub: mc

ref: 4fc4ebc1ca4f375c6f9b1d8babb53e03da51214f
dir: /test/struct1.myr/

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

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