shithub: mc

ref: 6497ac18c2db4fb60489a0b0fd9c2c035c75c343
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
}