shithub: mc

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

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

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