aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
blob: 6f63b8d3f1593ce2afcd89e013daa13b7f0a4a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
const std = @import("std");
const field = @import("field.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());
}