blob: 14bada30944ad1ff419f92e4a96ab92309418cce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
const std = @import("std");
const field = @import("field.zig");
const pointer = @import("pointer.zig");
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());
}
|