Using functions from package haskell98 - GHC 5.04
Wolfgang Jeltsch
wolfgang@jeltsch.net
22 Oct 2002 16:11:17 +0200
On Tuesday, 2002-10-22, 11:28, CEST, Malcolm Wallace wrote:
> [...]
> 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.)
It hasn't changed. Obviously, RC1 has it still in the prelude:
Hugs session for:
/usr/lib/hugs/lib/Prelude.hs
Type :? for help
Prelude> :t isDigit
isDigit :: Char -> Bool
And if it would have changed, AFAICS, Hugs would have to support
mutually recursive modules. Then the man page would be wrong because it
says that Hugs doesn't support them.
> Regards,
> Malcolm
Wolfgang