Files
zig-tests/single_files/helloworld.zig
2022-08-27 19:59:18 +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", .{});
}