shithub: mc

ref: 594d18234e9f3c0591dfe2da55e6d0b9e0d97c9c
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
}