"Marco van Roshum" <[EMAIL PROTECTED]> writes: > In my program, I use the function "isDigit", which is part of > haskell98.Data.Char > > When compiling my program, I get the error: Variable not in scope: > isDigit. The same error occurs when I explicitly use the package > haskell98 as in the following command-line.
Are you remembering to add "import Data.Char" to your program? > When trying to load this program in Hugs, there is nog problem at all. IIRC, the current release of Hugs has the function isDigit in the Prelude, and so doesn't need any imports. (This will change in the new October 2002 release.) Regards, Malcolm _______________________________________________ Haskell mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell