shithub: mc

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

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

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