this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 9 lines 236 B view raw
1//! By convention, root.zig is the root source file when making a library. 2const std = @import("std"); 3 4pub const Golomb = @import("Golomb.zig"); 5pub const ZigZag = @import("ZigZag.zig"); 6 7test { 8 std.testing.refAllDecls(@This()); 9}