Skip to content

Instantly share code, notes, and snippets.

@chespinoza
Created July 24, 2013 16:46
Show Gist options
  • Save chespinoza/6072283 to your computer and use it in GitHub Desktop.
Save chespinoza/6072283 to your computer and use it in GitHub Desktop.
Low level parsing
func main() {
s := "123.45"
r := bytes.NewBufferString(s)
runtime.UpdateMemStats()
println(runtime.MemStats.Mallocs)
var v float64
fmt.Fscanf(r, "%f", &v)
runtime.UpdateMemStats()
println(runtime.MemStats.Mallocs)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment