Add zig assembler boilerplate -- does NOTHING lol

This commit is contained in:
2025-11-15 20:45:54 +00:00
parent b9f98bff7b
commit 73c03cab50
5 changed files with 147 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
const std = @import("std");
pub fn main() !void {
// Prints to stderr, ignoring potential errors.
std.debug.print("All your {s} are belong to us.\n", .{"codebase"});
}
+1
View File
@@ -0,0 +1 @@
const std = @import("std");