shithub: mc

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

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

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