shithub: mc

ref: 440ff74a6d16e3edb5322976ae5c9446f315c754
dir: /test/struct1.myr/

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

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