shithub: mc

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

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

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