shithub: mc

ref: 6a5373b289e74fb66819266a4b2fcfab5de23913
dir: /test/struct1.myr/

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

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