shithub: mc

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

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

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