Function print [src]
Prototype
pub inline fn print(self: Self, comptime format: []const u8, args: anytype) Error!void
Parameters
self: Self
format: []const u8
Source
pub inline fn print(self: Self, comptime format: []const u8, args: anytype) Error!void {
return @errorCast(self.any().print(format, args));
}