shithub: mc

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

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

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