Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to import Data.Char into my .hs file, in order to run the script in GHCi. When I just add "import Data.Char" the console seems to complain and gives me parse error. How do I do that properly? I know its probably very simple, but I could not find an answer myself.

What produces the error :

import Data.Char

hashString :: [Char] -> Int -> [Char]
hashString [] a = []
hashString (x:xs) a = (intToDigit((digitToInt x) * a)):hashToString( xs (a - 1) )
share|improve this question
4  
This is probably something quite simple, but you'll probably need to post an example for us to be able to tell what you did wrong. My best guess is that you tried to do the import at the bottom of the file or something; it needs to be at the top. – MathematicalOrchid Dec 1 '12 at 16:56
That code gives me some other errors (a misspelled name, some type errors) but no parse error. – hammar Dec 1 '12 at 16:58
Yeah I had some code above that import, I thought since I do not use is over there, the import statement can be below. Thanks very much! – foFox Dec 1 '12 at 16:58
Yeah, the code is probably wrong, I need to do some haskell coding for college assignment. I don't like it so I don't use if I don't absolutely have to, hence the errors. – foFox Dec 1 '12 at 17:02

1 Answer

up vote 1 down vote accepted

Well you don't like it? Try to learn it first then see how it goes, give it a shot:)

Anyway, Data.Char does not have a function called hashToString, if that's your problem. You do need to import Data.Char for the intToDigit and digitToInt, though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.