add libomt

This commit is contained in:
2025-10-11 12:36:23 +03:00
parent cbd43bd2b5
commit 7626db7885
7 changed files with 208 additions and 0 deletions

6
src/main.zig Normal file
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"});
}