shithub: mc

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

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

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