shithub: mc

ref: 4f1a566d65a2a1c91c18dbd96f5cba69b80d8008
dir: /test/struct1.myr/

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

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