Contact: aviboots(AT)netvision.net.il
39,959 questions
51,901 answers
573 users
package main import "fmt" func main() { str := ""; if (len(str) == 0) { fmt.Println("Empty") } else { fmt.Println("Not empty") } } /* run: Empty */
package main import "fmt" func main() { str := "Go"; if (str == "") { fmt.Println("Empty") } else { fmt.Println("Not empty") } } /* run: Not empty */