initial commit

This commit is contained in:
2022-04-14 23:48:58 -03:00
commit 48b48cf009
3 changed files with 45 additions and 0 deletions

9
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);
}