IsLower( string:string ) → bool
Returns True if string consists entirely of lowercase letters, otherwise returns False.
Example:
Output(IsLower("abcde")) --> true Output(IsLower("abCde")) --> false
See also: IsAlpha IsDigit IsPunct IsSpace IsUpper