
27 May
2003
27 May
'03
1:03 a.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
11: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
8075
Age (days ago)
8075
Last active (days ago)
1 comments
2 participants
participants (2)
-
David Roundy
-
Pablo Dejuan