Skip to content

Instantly share code, notes, and snippets.

@chespinoza
Created July 31, 2013 15:44
Show Gist options
  • Save chespinoza/6123183 to your computer and use it in GitHub Desktop.
Save chespinoza/6123183 to your computer and use it in GitHub Desktop.
Simple string concat
package main
import (
"fmt"
"strconv"
)
func main() {
i := 80
fmt.Println(":" + strconv.Itoa(i))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment