Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
elf2
hello.zig
pretty
plain
permalink
blame
history
•
6 lines
•
180 B
1
pub fn main(init: std.process.Init) !void {
2
const stdout: std.Io.File = .stdout();
3
try stdout.writeStreamingAll(init.io, "Hello, World!\n");
4
}
5
6
const std = @import("std");