Skip to content

Instantly share code, notes, and snippets.

@GoesToEleven
Created October 27, 2015 05:29
Show Gist options
  • Save GoesToEleven/448ff723e02774503b70 to your computer and use it in GitHub Desktop.
Save GoesToEleven/448ff723e02774503b70 to your computer and use it in GitHub Desktop.
Golang Buffer (bytes.Buffer)
var b bytes.Buffer // A Buffer needs no initialization.
b.Write([]byte("Hello "))
fmt.Fprintf(&b, "world!")
b.WriteTo(os.Stdout)
// OUTPUT:
// Hello world!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment