fn print(comptime fmt: []const u8, args: anytype) void
fn print(comptime fmt: []const u8, args: anytype) void { if (@inComptime()) { @compileError(std.fmt.comptimePrint(fmt, args)); } else if (backend_can_print) { std.debug.print(fmt, args); } }