shithub: mc

ref: 31d5350f573cf2b2c176082ae26de473ee1f885c
dir: /test/struct1.myr/

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

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