Tagged Questions

0
votes
1answer
51 views

Haskell List Comprehension

I get the error "Not in scope: x" when doing as follows... blanks :: Sudoku -> [Pos] blanks (Sudoku su) = [ fst x | x <- posSud | isBlank (snd x) ] where isBlank Nothing = True …
1
vote
2answers
54 views

How do you route stdin from a file to a function when running GHCI

I'm using ghci 6.10.4 at the dos command line in XP, and also in emacs using haskell-mode-2.4 When running programs that operate on stdin, is there a way I can redirect a file to be stdin? For …
3
votes
4answers
171 views

Differences Between Hugs, Yhc and GHCi

There are differences between Hugs, Yhc and GHCi? If there are differences, What are they?
0
votes
3answers
104 views

How to use fromInteger in Haskell?

One way to calculate 2^8 in haskell is by writing product(replicate 8 2) When trying to create a function for this, defined as follows... power1 :: Integer → Integer → Integer power1 n k | k < …
0
votes
1answer
141 views

how to write numbers in lambda using ghci

Hi. I am new to Haskell, using Ghci. I have a function, called three, that I want to write as let three = \x->(\y->(x(x(x y)))) OK, this works, but when I try three (2+) 4 It does not …
0
votes
2answers
86 views

Failed to try function “permutations” in ghci (Haskell)

I am trying to walk through the functions in Data.List of the Haskell stardard library and get an error when trying "permutations". What am I missing here? Thanks. Prelude> map (\b-> b*b) …
2
votes
3answers
126 views

Where can I find a full parenthesizer for Haskell?

Is there a way in GHCI to show a fully parenthesized version of a statement? I've found myself wanting to do that sometimes to help me understand a piece of code that I'm not familiar with. Sometimes …