shithub: mc

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

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

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