shithub: mc

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

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

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