shithub: mc

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

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

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