benchmark: a new package and framework for benchmarking

This commit is contained in:
Mitchell Hashimoto
2025-07-07 16:36:17 -07:00
parent 8506637ae6
commit 0e8ccc7352
4 changed files with 269 additions and 0 deletions

6
src/benchmark/main.zig Normal file
View File

@@ -0,0 +1,6 @@
pub const Benchmark = @import("Benchmark.zig");
pub const TerminalStream = @import("TerminalStream.zig");
test {
_ = @import("std").testing.refAllDecls(@This());
}