shithub: mc

ref: 5683fabf488d8e1a8e6beeff31e732cf8dcf590b
dir: /test/struct1.myr/

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

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