shithub: mc

ref: 1c5aa84742e3804a13a2d8fb990d82a6e493bf5a
dir: /test/struct1.myr/

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

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