Reputation: 463
why are the output of those codes different?
fmt.Println(Join([]string{"name=xxx", string(127)}, "&"))
output name=xxx&
fmt.Println(Join([]string{"name=xxx", "127"}, "&"))
output name=xxx&127
Any help!
Upvotes: 1
Views: 580