shithub: mc

ref: 1b71d38fed9e132d36aff99b74217b2d6ec83ccd
dir: /test/struct1.myr/

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

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