shithub: mc

ref: 6a7f16a2b8e1be9639a79726d8195fc6cfae27f1
dir: /test/struct1.myr/

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

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