shithub: mc

ref: dc27d590d3a3f1ee4ec055c50c7829303ac72af9
dir: /test/struct1.myr/

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

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