shithub: mc

ref: 2b00b4a0fc8f56bd47fa9e8fab3a9e47add497fc
dir: /test/struct1.myr/

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

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