shithub: mc

ref: 5690c5727ebf9fd99213b8c9b81f4e0a7fde715c
dir: /test/struct1.myr/

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

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