RosettaCodeData/Task/Hello-world-Standard-error/Zig/hello-world-standard-error-1.zig
2023-12-16 21:33:55 -08:00

7 lines
161 B
Zig

const std = @import("std");
pub fn main() std.fs.File.WriteError!void {
const stderr = std.io.getStdErr();
try stderr.writeAll("Goodbye, World!\n");
}