feat: Initial 'Hello, World!' application

This commit is contained in:
Sebastian Cabrera 2025-08-09 20:11:24 -04:00
parent 1f6cf39f68
commit 10a5347fd4
Signed by: okseby
GPG key ID: 2DDBFDEE356CF3DE

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();
}