shithub: mc

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

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

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