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

7 lines
151 B
Zig
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
const std = @import("std");
pub fn main() void {
// Silently returns if writing to stderr fails.
std.debug.print("Goodbye, World!\n", .{});
}