shithub: mc

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

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

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