inline fn repeatString(comptime n: usize, comptime str: []const u8) []const u8
inline fn repeatString(comptime n: usize, comptime str: []const u8) []const u8 { const buf: [n][str.len]u8 = @splat(str[0..str.len].*); return @ptrCast(&buf); }