initial commit

This commit is contained in:
Ben Buhse 2025-05-03 21:01:19 -05:00
commit 8eec239af6
No known key found for this signature in database
GPG key ID: 7916ACFCD38FD0B4
6 changed files with 314 additions and 0 deletions

9
src/main.zig Normal file
View file

@ -0,0 +1,9 @@
// SPDX-FileCopyrightText: 2025 Ben Buhse <me@benbuhse.email>
//
// SPDX-License-Identifier: EUPL-1.2
pub fn main() !void {
std.debug.print("All your {s} are belong to us.\n", .{"protocol"});
}
const std = @import("std");