RosettaCodeData/Task/Hello-world-Text/Zig/hello-world-text.zig

8 lines
158 B
Zig
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
const std = @import("std");
2023-12-16 21:33:55 -08:00
pub fn main() std.fs.File.WriteError!void {
const stdout = std.io.getStdOut();
try stdout.writeAll("Hello world!\n");
2023-07-01 11:58:00 -04:00
}