shithub: mc

ref: af80a22d3c4d5345af67f749aee6008ae6d2e92f
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
}