shithub: mc

ref: 33ee7d302c1458d5e36a7d6bde5e7666cb394769
dir: /test/struct1.myr/

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

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