zig-stuff/Hello-World/main.zig
2023-02-02 21:18:50 +00:00

7 lines
123 B
Zig

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