Files
zig-tests/hello.zig
2022-08-27 01:05:52 +08:00

8 lines
153 B
Zig

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