Contact: aviboots(AT)netvision.net.il
41,780 questions
54,465 answers
573 users
package main import ( "fmt" "unicode" ) func main() { ch := 'a' if unicode.IsLetter(ch) { fmt.Println("yes") } else { fmt.Println("no") } } /* run: yes */