shithub: mc

ref: 2fad146c7146c1d522c1d20ed80663cc4701ea9a
dir: /test/struct1.myr/

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

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