RosettaCodeData/Task/Hello-world-Newbie/Zig/hello-world-newbie-1.zig
2023-07-01 13:44:08 -04:00

11 lines
373 B
Zig

// - Install zig from https://ziglang.org/download/.
// - Extract into your path
// - `zig run newbie.zig`
const std = @import("std");
pub fn main() void {
// If you only want to quickly debug things and panic on failure,
// you can use `debug.print` to print to standard error
// Do not use debug code in production.
std.debug.print("Hello, World!\n");
}