Contact: aviboots(AT)netvision.net.il
40,866 questions
53,271 answers
573 users
package main import "fmt" func main() { arr := []string{"go", "c++", "php", "python"} for _, s := range arr { fmt.Println(s) } } /* run: go c++ php python */