shithub: mc

ref: f7074d00acc613446d00e89743bd1e62fa85598f
dir: /test/struct1.myr/

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

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