mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-28 11:27:09 +03:00
8 lines
113 B
Zig
8 lines
113 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() void {
|
|
std.debug.print("Hello, world!\n", .{});
|
|
}
|
|
|
|
// exe=succeed
|