shithub: mc

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

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

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