shithub: mc

ref: 357b2411f4cb3d37ff54e8a7a13ae36d387a1bb8
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
}