shithub: mc

ref: 410752ea2d5f6661e363379d14bd255521ca46e7
dir: /test/struct1.myr/

View raw version
type val = struct
	a : int
;;

const main = {
	var s : val
	s.a = 12
	-> s.a
}