time-to-botec/wip/zig/hello-world.zig
2023-05-20 20:00:58 -04:00

6 lines
102 B
Zig

const std = @import("std");
pub fn main() void {
std.debug.print("Hello, {s}!\n", .{"World"});
}