chat/common/src/root.zig
2025-06-10 23:24:32 +01:00

5 lines
125 B
Zig

const std = @import("std");
pub fn print_test(sender: []const u8) void {
std.log.debug("Message from {s}", .{ sender });
}