shithub: mc

ref: 7c7208dac215e12376b9d72c7fd52ec4bb44ee69
dir: /test/struct1.myr/

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

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