shithub: mc

ref: 3a6ce7b6c6f83632d6083ffa37a59c88e49fe737
dir: /test/foldidx.myr/

View raw version
use std

type xy = struct
	x : int
	y : int
;;
const X = 123
const Y = 456
const z : xy[1] = [
	[.x = X, .y = Y]
]

const main = {
	std.put("{},{}\n", z[0].x, z[0].y)
}