RosettaCodeData/Task/Hello-world-Standard-error/Zig/hello-world-standard-error.zig

7 lines
212 B
Zig
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
const std = @import("std");
pub fn main() !void {
try std.io.getStdErr().writer().writeAll("Goodbye, World!\n");
// debug messages are also printed to stderr
//std.debug.print("Goodbye, World!\n");
}