Relative Content

Tag Archive for haskellchar

Checking if Char is lowercase in Haskell

How would be a code in Haskell, where the program tells you, in Boolean, if the Char is lowercase or not.
isItLowercase (e: Char) : Bool
I need to use the most simple functions.