shithub: mc

ref: 575cd5a2034d9bfe97fc2275df76631383fa0898
dir: /test/struct1.myr/

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

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