shithub: mc

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

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

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