shithub: mc

ref: 440ff74a6d16e3edb5322976ae5c9446f315c754
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
}