shithub: mc

ref: 8e8131e3e7dbc21f60631a80ad3e638df80661ae
dir: /test/struct1.myr/

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

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