shithub: mc

ref: 416a47f74171d93f9237afede0d434bcc841e3fd
dir: /test/struct1.myr/

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

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