shithub: mc

ref: 8f56400a286619aa1373e5f731e74a79fb9cdfbc
dir: /test/struct1.myr/

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

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