empty zig + raylib in nix

This commit is contained in:
Fabien Freling 2022-01-21 15:12:40 +01:00
commit 83aa7b8e66
5 changed files with 63 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);
}