I'm reading the Haskell book : http://learnyouahaskell.com/types-and-typeclasses
When I enter this line in the interpreter,
removeNonUppercase st = [c | c <- st, c `elem` ['A' .. 'Z']]
I get this error:
parse error on input `='
Whats causing this error ?