Files
zig-tests/helloworld.zig
2022-08-27 01:08:16 +08:00

9 lines
175 B
Zig

const std = @import("std");
const print = @import("std").debug.print;
pub fn main() void {
std.debug.print("Hello, world!\n", .{});
print("Hello, world!\n", .{});
}