This commit is contained in:
Harrison DiAmbrosio 2025-10-16 10:39:24 -04:00
commit 7325a3ee47
7 changed files with 170 additions and 0 deletions

7
src/main.zig Normal file
View file

@ -0,0 +1,7 @@
const std = @import("std");
const Server = @import("server.zig").Server;
pub fn main() !void {
std.debug.print("Starting wwm");
}