shithub: mc

ref: 16f5afe322e39f1716716700188664305b829d59
dir: /test/struct1.myr/

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

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