12 lines
299 B
Zig
12 lines
299 B
Zig
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());
|
|
}
|