shithub: mc

ref: 4709d4ebd8b07e4a568726af17478c9d9cb66d71
dir: /test/struct1.myr/

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

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