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