Skip to content

Instantly share code, notes, and snippets.

@duguying
Created July 3, 2018 09:55
Show Gist options
  • Save duguying/b200cd85686a6fb9284dccfdffabee15 to your computer and use it in GitHub Desktop.
Save duguying/b200cd85686a6fb9284dccfdffabee15 to your computer and use it in GitHub Desktop.
using bytes.buffer to concat string is better than str+=substr
function main(){
var buffer bytes.Buffer
for i := 0; i < 1000000; i++ {
buffer.WriteString("a")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment