I am a newbie in Go. I can't find any official docs showing how to merge multiple strings into a new string.
What I'm expecting:
Input: "key:", "value", ", key2:", 100
Output: "Key:value, key2:100"
I want to use + to merge strings like in Java and Swift if possible.