blob: ba33d960dfc68f2c9f4276e767ff8eccb8670c5c (
plain)
1
2
3
4
5
6
7
8
9
10
|
const std = @import("std");
const stackStack = @import("stackStack.zig");
pub fn main() anyerror!void {
std.log.info("All your codebase are belong to us.", .{});
}
test "all" {
std.testing.refAllDecls(@This());
}
|