mirror of
https://github.com/ziglang/zig.git
synced 2026-01-15 11:55:14 +00:00
6 lines
109 B
Zig
6 lines
109 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
try std.io.getStdOut().writeAll("Hello, World!\n");
|
|
}
|