Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
package main import ( "fmt" "strings" ) func main() { s := "go javascript php c c++ python" fmt.Println(s[:strings.Index(s, " ")]) } /* run: go */