shithub: mc

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

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

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