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

8 lines
136 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
2025-02-27 18:35:13 -05:00
pub fn main() !void {
2023-12-16 21:33:55 -08:00
const stdout = std.io.getStdOut();
try stdout.writeAll("Hello world!\n");
2023-07-01 11:58:00 -04:00
}