Skip to content

Instantly share code, notes, and snippets.

@fernandoporazzi
Last active April 21, 2017 19:12
Show Gist options
  • Save fernandoporazzi/db4bf05ebb0b90042a340c5cbdcd0d1e to your computer and use it in GitHub Desktop.
Save fernandoporazzi/db4bf05ebb0b90042a340c5cbdcd0d1e to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
urls := []string{"github.com",
"twitter.com",
"facebook.com",
"instagram.com"}
for _, url := range urls {
fmt.Printf("%s/fernandoporazzi\n", url)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment