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