shithub: mc

ref: 29137fc29f53c66df62485ee3f7f956a5aae3041
dir: /test/struct1.myr/

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

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