Created
August 9, 2016 19:48
-
-
Save dt/f593fc8262cf64a6e57802eb0591146e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
import "testing" | |
// go test -bench . -benchmem -count 10 | benchstat | |
// name time/op alloc/op allocs/op | |
// Fmt-8 168ns ± 7% 32.0B ± 0% 2.00 ± 0% | |
func BenchmarkFmt(b *testing.B) { | |
for k := 0; k < b.N; k++ { | |
fmt.Sprintf("hello %s", "world") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment