shithub: mc

ref: 3e622c8ee2d7aac48da5e8614b88aaa4ea550aae
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
}