shithub: mc

ref: 99182bb1ece37aa9bd3c2c5466c650caa10e4d4b
dir: /test/structlit.myr/

View raw version
type t = struct
	a	: int
	b	: char
	c	: char[,]
;;

const main = {
	var v : t

	v = [.a=42, .b='x', .c="foo"]
	-> v.a
}