Skip to content

Instantly share code, notes, and snippets.

@dt
Created August 9, 2016 19:48
Show Gist options
  • Save dt/f593fc8262cf64a6e57802eb0591146e to your computer and use it in GitHub Desktop.
Save dt/f593fc8262cf64a6e57802eb0591146e to your computer and use it in GitHub Desktop.
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