shithub: mc

ref: 4709d4ebd8b07e4a568726af17478c9d9cb66d71
dir: /test/struct.myr/

View raw version
type pair = struct
	a : int
	b : int
;;

const main = {
	var s : pair
	s.a = 12
	s.b = 30
	-> s.a + s.b
}