mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
7 lines
113 B
Zig
7 lines
113 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() void {
|
|
std.debug.print("Hello, world!\n", .{});
|
|
}
|
|
|
|
// exe=succeed
|