shithub: mc

ref: 128a304c58ed737c2f3c3bfff6957ccfc4c5bd50
dir: /test/struct1.myr/

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

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