shithub: mc

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

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

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