holly molly

This commit is contained in:
2024-08-10 23:51:15 +03:00
commit 4ea00774ca
12 changed files with 520 additions and 0 deletions

12
clock_test.go Normal file
View File

@@ -0,0 +1,12 @@
package clock
import (
"testing"
"io"
)
func BenchmarkNumber(b *testing.B) {
for i := 0; i < b.N; i++ {
Numbers(io.Discard)
}
}