zigo

July 16, 2026, 2:34am 1


    // The two are less consistent.
    const v = T{.x = 1, .y = true}; // why not T.{.x = 1, .y = true} ?
    const v: T = .{.x = 1, .y = true};
    
    // The two are more consistent.
    const v = T.declOrTag;
    const v: T = .declOrTag;