shithub: mc

ref: 916167a53d09c9852020c5c75bfe2fe6744ddb0a
dir: /test/struct1.myr/

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

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