Created
July 3, 2018 09:55
-
-
Save duguying/b200cd85686a6fb9284dccfdffabee15 to your computer and use it in GitHub Desktop.
using bytes.buffer to concat string is better than str+=substr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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