shithub: mc

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

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

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