shithub: mc

ref: 60179fff24f6737b3ad6ca3e0e2c332fe8a20c85
dir: /test/struct1.myr/

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

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