Initial commit

This commit is contained in:
mg 2025-04-07 22:23:32 +00:00
commit 650a824b16
8 changed files with 183 additions and 0 deletions

11
src/main.zig Normal file
View file

@ -0,0 +1,11 @@
const std = @import("std");
pub fn main() !void {
const stdout_file = std.io.getStdOut().writer();
var bw = std.io.bufferedWriter(stdout_file);
const stdout = bw.writer();
try stdout.print("Hello, World.\n", .{});
try bw.flush();
}

1
src/root.zig Normal file
View file

@ -0,0 +1 @@
const std = @import("std");