feat: update zig-tests

This commit is contained in:
2022-08-27 19:59:18 +08:00
parent 8ac2e1f002
commit e643e7e93e

View File

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