shithub: mc

ref: c40f319b0a288ac9021513083c4abcb261d2822c
dir: /test/struct1.myr/

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

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