shithub: mc

ref: 290af5c176be42347969ad80ed9d73391a36c61e
dir: /test/struct1.myr/

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

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