shithub: mc

ref: 7efe6165e6c644a51b50e91c897a9f19256db92d
dir: /test/struct1.myr/

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

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