mirror of
https://github.com/ziglang/zig.git
synced 2024-11-22 20:30:17 +00:00
9 lines
168 B
Zig
9 lines
168 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
try stdout.print("Hello, {s}!\n", .{"world"});
|
|
}
|
|
|
|
// exe=succeed
|