shithub: mc

ref: b9b381e6f0eb16b144127f1fbb7b4ce17da8e66c
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
}