Last active
April 21, 2017 19:12
-
-
Save fernandoporazzi/db4bf05ebb0b90042a340c5cbdcd0d1e to your computer and use it in GitHub Desktop.
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
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