shithub: mc

ref: 2c92e48f88c0e6000a85ff6756cf692eed6a3e74
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
}