shithub: mc

ref: ce384085a46a728d096389e3df59d1ca25d51aa2
dir: /test/struct_oneval.myr/

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

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