shithub: mc

ref: 013bffde621d421e1914491e6249a7486b9a1380
dir: /test/struct1.myr/

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

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