shithub: mc

ref: 258ebf372f0e64f10b42dbc537417a33b2bad60d
dir: /test/struct1.myr/

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

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