shithub: mc

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