Files
zig/test/standalone/simple/hello_world/hello.zig
2024-04-07 16:05:54 -07:00

6 lines
109 B
Zig

const std = @import("std");
pub fn main() !void {
try std.io.getStdOut().writeAll("Hello, World!\n");
}