Re: Char.toUpper
"Neil Mitchell" <[email protected]> Thu, 3 Aug 2006 20:26:10 +0100
| Newsgroups | gmane.comp.lang.haskell.hugs.user |
|---|---|
| Message-ID | <[email protected]> |
Hi Christian, > map toUpper "cCcC" First you need to load the Char module, so do: :load Char Then execute the command above and it works just fine. Thanks Neil