shithub: mc

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

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

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