#Invalid escape character: 'e'
1 messages · Page 1 of 1 (latest)
yup: you cannot concatenate strings in Zig - though it's reasonable in higher-level languages, that's not the case in Zig.
just print them in sequence:
pub fn white(str: []const u8) void {
const wht = "\x1B[0;90m";
std.debug.print("{s}{s}{s}", .{wht, formated, wht});
}
yes