shithub: mc

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

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

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