import "pangram"
Package pangram determines if a sentence is a pangram.
func IsPangram
func IsPangram(input string) bool
IsPangram returns true if the string contains all the ASCII letters (a to z).
Example
{
fmt.Println(IsPangram("The quick brown fox jumps over the lazy dog."))
fmt.Println(IsPangram("abc"))
}
true
false
Generated by gomarkdoc