shithub: mc

ref: 84e80233d1910dc255f4adb1d3de56a1d89e987c
dir: /test/struct1.myr/

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

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