time-to-botec/wip/zig/hello-world.zig

6 lines
102 B
Zig
Raw Normal View History

2023-05-21 00:00:58 +00:00
const std = @import("std");
pub fn main() void {
std.debug.print("Hello, {s}!\n", .{"World"});
}