shithub: mc

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

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

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