shithub: mc

ref: 4519f3ff10c67f4f965433be4ec50e3552de276f
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
}