package hotpath import "testing" func BenchmarkParse(b *testing.B) { b.ReportAllocs()
use criterion::{black_box, criterion_group, criterion_main, Criterion}; fn fibonacci(n: u64) -> u64 { match n { 0 => 1, 1 => 1,