
26 May
2003
26 May
'03
9:03 p.m.
Hi. I've just started using haskell and I've some problems with the generated file of happy, the example.hs. When I try to load it, It complains that isAlpha, isDigit and isSpace are variables not in scope. This means I should import a particular module to do so? TIA

27 May
27 May
7:29 a.m.
On Tue, May 27, 2003 at 03:03:21AM +0200, Pablo Dejuan wrote:
Hi. I've just started using haskell and I've some problems with the generated file of happy, the example.hs. When I try to load it, It complains that isAlpha, isDigit and isSpace are variables not in scope. This means I should import a particular module to do so?
Those functions are in Char: import Char ( isAlpha, isDigit, isSpace ) -- David Roundy http://www.abridgegame.org
8029
Age (days ago)
8029
Last active (days ago)
1 comments
2 participants
participants (2)
-
David Roundy
-
Pablo Dejuan