shithub: mc

ref: 814f0d3958f7ac453d2913363a87238cc5c03a5f
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
}