shithub: mc

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

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

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