size: 162 B

1const std = @import("std");
2const print = std.debug.print;
3
4pub fn println(comptime fmt: []const u8, args: anytype) void {
5 return print(fmt ++ "\n", args);
6}