/
repos
/
loa
/
1e03cdce8d: src/utils.zig
size: 162 B
1
const std = @import("std");
2
const print = std.debug.print;
3
4
pub fn println(comptime fmt: []const u8, args: anytype) void {
5
return print(fmt ++ "\n", args);
6
}