shithub: mc

ref: 89b2b2847a7c0e350b7b9ec2de0a4f0eb9a01e59
dir: /test/struct1.myr/

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

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