shithub: mc

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

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

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