shithub: mc

ref: 88554182e72b6d1e23f9482fae2bb5f1ed50d408
dir: /test/struct1.myr/

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

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