shithub: mc

ref: 49d3b0cf04719267479faebe9e2ffe0089a2f9ac
dir: /test/struct1.myr/

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

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