shithub: mc

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