shithub: mc

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

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

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