shithub: mc

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

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

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