Initial zig shell.

This commit is contained in:
2022-07-28 21:40:03 -07:00
parent 55af087d69
commit 93bfeb9125
3 changed files with 45 additions and 0 deletions

9
zigrtiow/src/main.zig Normal file
View File

@@ -0,0 +1,9 @@
const std = @import("std");
pub fn main() anyerror!void {
std.log.info("All your codebase are belong to us.", .{});
}
test "basic test" {
try std.testing.expectEqual(10, 3 + 7);
}