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

I am totally newbie to haskell.

I have such snippet code

lucky:: Int->String
lucky 7 = "LUCKY NUMBER SEVEN!"
lucky x = "Sorry , youre out of luck pal!" 

I tried to input to terminal directly, seems not right. But if I want to put this in file and load this file, then call lucky function. How should I construct this file? Thank you!

I tried this:

module Main where
lucky:: Int->String
lucky 7 = "LUCKY NUMBER SEVEN!"
lucky x = "Sorry , youre out of luck pal!" 


main = do 

But when i try to call lucky in terminal, i got this:

factorial.hs:7:8: Empty 'do' construct
lucky 7

<interactive>:1:1: Not in scope: `lucky'
share|improve this question

2 Answers

up vote 5 down vote accepted

The problem is that your last line, main = do, is a syntax error; if your file has a syntax error then none of the functions in it will load. It should work fine if you take out your definition of main and try to load it.

On an unrelated note, generally Haskell type signatures are written with spacing like lucky :: Int -> String.

share|improve this answer
thank you. fixed :) – Anders Lind Apr 29 '12 at 0:51

You don't need the module Main where or main = do lines.

You can load and use function definitions into ghci, simply by saving the file with a ".hs" extension, then typing :load and the the filename

share|improve this answer
(Could you make an edit to your answer? I accidentally downvoted it, and can't undo it unless it's edited :) ) – dbaupp Apr 29 '12 at 2:22
1  
@dbaupp: done :) – amindfv Apr 29 '12 at 12:02

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.