shithub: mc

ref: 09f4922d56d1946aa02d5fedccb53b8a32d76ad2
dir: /test/struct1.myr/

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

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