blob: a7a7c9546a974e2d6130a20559150a0ff8d1af14 (
plain) (
blame)
1
2
3
4
5
6
7
8
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);
}
|