shithub: mc

ref: b269fb0c8a2dc4b18dd28deb1ed9e44b7a10ace0
dir: /test/struct1.myr/

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

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