shithub: mc

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

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

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