mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00: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
|