Re: Couldn't find isAlphaNum

1999-02-15 Thread David Barton
Sigbjorn writes: Weird - are you sure it was capitalised as Haskell now prescribes? Well, *that* makes me feel dumb. That was the problem, indeed. I ask pardon for my blindness. Dave Barton <*> [EMAIL PROTECTED

RE: Couldn't find isAlphaNum

1999-02-15 Thread Sigbjorn Finne (Intl Vendor)
Weird - are you sure it was capitalised as Haskell now prescribes? sar$ cat x.hs module X where { import Char (isAlphaNum) ; x = isAlphaNum } sar$ ghc --version The Glorious Glasgow Haskell Compilation System, version 4.02, patchlevel 0 sar$ ghc -noC x.hs sar$ --Sigbjorn > David Barton [mailt

Couldn't find isAlphaNum

1999-02-13 Thread David Barton
While running the new 4.02 on a Linux box, I got a "could not find isAlphaNum" error. I looked at the .hi file, and it seemed OK; however, switching to the definition of the expressions using "isAlpha" and "isDigit" solved the problem. Don't know what's wrong, but