Skip to content

Instantly share code, notes, and snippets.

@cwbak
Created July 23, 2019 12:59
Show Gist options
  • Save cwbak/2f0340c4ae5f82204955f16671de99a4 to your computer and use it in GitHub Desktop.
Save cwbak/2f0340c4ae5f82204955f16671de99a4 to your computer and use it in GitHub Desktop.
package main
import (
"bytes"
"fmt"
)
func main() {
var buffer bytes.Buffer
for i := 0; i < 1000; i++ {
buffer.WriteString("a")
}
fmt.Println(buffer.String())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment