GHCi is the interactive environment (REPL) for the Glasgow Haskell Compiler.

learn more… | top users | synonyms

8
votes
7answers
979 views

Why does ghci say that 1.1 + 1.1 + 1.1 > 3.3 is True?

I've been going through a Haskell tutorial recently and noticed this behaviour when trying some simple Haskell expressions in the interactive ghci shell: Prelude> 1.1 + 1.1 == 2.2 True Prelude> ...
14
votes
1answer
296 views

I taught ghci to compile my StackOverflow posts. Can I make it slicker?

Haskell StackOverflow layout preprocessor module StackOverflow where -- yes, the source of this post compiles as is Skip down to What to do to get it working if you want to play with this first ...
20
votes
1answer
272 views

What is going on with the types in this ghci session?

I'm learning Haskell, and I was playing around in ghci when I came across something very puzzling. First, create a simple add function: Prelude> let add x y = x + y Note that it works with ints ...
3
votes
4answers
328 views

Negative doubles or floats in Haskell (macports)

Why do I get a segmentation fault when I try to show a negative double or float? There is no problem for negative integers. Prelude> let a = 4 Prelude> :t a a :: Integer Prelude> let b = -4 ...
2
votes
2answers
690 views

Haskell : loading ALL files in current directory path

The command (in GHCi) :load abc Loads the functions in the file abc (which must exist in the current directory path). How would I load all the files in the current directory path? Thanks ...
11
votes
6answers
2k views

How to hack GHCi (or Hugs) so that it prints Unicode chars unescaped?

Look at the problem: Normally, in the interactive Haskell environment, non-Latin Unicode characters (that make a part of the results) are printed escaped, even if the locale allows such characters (as ...
25
votes
4answers
3k views

Why can't I define a new type in ghci?

I get an error in ghci when I try to define a new type: Prelude> data Point = Pt Int Int <interactive>:1:0: parse error on input `data' Prelude> let data Point = Pt Int Int ...
16
votes
1answer
820 views

Infinite loop in haskell? (newbie)

I'm just learning Haskell. I thought this would produce a factorial function... (within ghci) Prelude> let ft 0 = 1 Prelude> let ft n = n * ft (n - 1) Prelude> ft 5 (hangs indefinitely, ...
8
votes
1answer
202 views

Why is GHCi typing this statement oddly?

In answering a question on stackoverflow, I noticed that GHCi (interactive) is assigning a too-restrictive type in a let statement. Namely, given the code, import Control.Arrow f = maximum ...
3
votes
1answer
279 views

Compiling Haskell code in Cygwin, and some other bugs in Haskell Platform on Windows

I am trying to compile a simple hello world program in Haskell, with Haskell Platform 2011.2.0.1. If I load the code in WinGHCi, and use the GUI to compile, the .exe is created. Then I can run the ...
27
votes
4answers
2k views

Haskell Graphics Library that works in GHCi on MacOS X

Does there exist a Haskell graphics library or binding to an external library that fulfills the following requirements: Can be used from ghci, i.e. I don't have to link and restart the program. ...
22
votes
6answers
624 views

Saving my running toplevel for later

When working in the ocaml or ghci toplevels I often build up a significant "context" for want of a better word, values bound, functions, modules loaded, and so on. Is there a way to save all of that ...
18
votes
4answers
6k views

How to define a function in ghci across multiple lines?

I'm trying to define any simple function that spans multiple lines in ghci, take the following as an example: let abs n | n >= 0 = n | otherwise = -n So far I've tried pressing Enter ...
8
votes
5answers
769 views

Debugging infinite loops in Haskell programs with GHCi

For the first time I've encountered an infinite loop in a Haskell program I'm writing. I've narrowed it down to a quite specific section of code, but I cannot seem to pinpoint exactly where I have a ...
7
votes
1answer
329 views

How to make a Haskell cabal project with library+executables that still run with runhaskell/ghci?

If you declare a library + executable sections in a cabal file while avoiding double compilation of the library by putting the library into a hs-source-dirs directory, you cannot usually run your ...
5
votes
3answers
900 views

How to use 'oneof' in quickCheck (Haskell)

I am trying to write a prop that changes a Sudoku and then checks if it's still valid. However, I am not sure how to use the "oneof"-function properly. Can you give me some hints, please? ...
14
votes
2answers
1k views

How to provide explicit type declarations for functions when using GHCi?

How to I define the equivalent of this function (taken from learnyouahaskell) inside GHCi? import Data.List numUniques :: (Eq a) => [a] -> Int numUniques = length . nub Without the ...
6
votes
1answer
296 views

Haskell's type inference strangeness

Look at this output from ghci: Prelude> :t Data.Map.lookup Data.Map.lookup :: Ord k => k -> Data.Map.Map k a -> Maybe a Prelude> :t flip Data.Map.lookup flip Data.Map.lookup :: Ord a ...
2
votes
3answers
438 views

How can I tell which libstdc++ double-conversion wants?

Here's the error I see when trying to load a .hs file into ghci. >Loading package http-enumerator-0.7.1.1 ... linking ... done. >Loading package double-conversion-0.2.0.1 ... can't load ...
7
votes
1answer
266 views

GHCi doesn't work with FFI export declarations/shared libaries

I have a problem regarding FFI in Haskell and the interactive mode of GHC. (Source is also available via a gist): FFISo.hs: {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ForeignFunctionInterface ...
4
votes
3answers
163 views

What is the difference between ++ and : in haskell?

I don't get this-- Prelude> "hi"++"there" "hithere" Prelude> "hi":"there" <interactive>:12:6: Couldn't match expected type `[Char]' with actual type `Char' Expected type: ...
3
votes
2answers
356 views

Haskell GHCi - Using EOF character on stdin with getContents

I like to parse strings ad hoc in Python by just pasting into the interpreter. >>> s = """Adams, John ... Washington,George ... Lincoln,Abraham ... Jefferson, Thomas ... """ >>> ...
3
votes
1answer
141 views

Inconsistent behavior with fromIntegral in GHCi

I was hoping someone could explain the following behavior in GHCi, when using the function fromIntegral: Prelude> let x = 1 :: Integer ...
3
votes
1answer
561 views

Haskell : unload module in WinGHCi

I loaded two modules (NecessaryModule1.hs and NecessaryModule2.hs as outlinked in Haskell : loading ALL files in current directory path). Now I want to unload NecessaryModule2.hs. I found an 'unload' ...
3
votes
1answer
353 views

Instance declaration in Haskell

I have these two functions: primes = sieve [2..] where sieve (p:xs) = p : sieve [x|x <- xs, x `mod` p > 0] isPrime number = number /= 1 && null [x | x <- takeWhile (\x ...
2
votes
1answer
202 views

Need help writing prop to blak :: Sudoku → [Pos] (Haskell)

i stumbled over this thread Haskell List Comprehension And am now trying to write a prop for it that states that all cells in this function actually are blank, but have only gotten this far with the ...
2
votes
4answers
728 views

Is it possible to define new ADTs in GHCi

While commenting on new features in ghci I wished that ghci had the ability to declare type declaration and declaring new ADT types, someone informed that it was indeed possible, and after searching I ...
1
vote
3answers
242 views

Memoization pascals triangle

I'm not interested in the actual solution or other methods solving the problem, it's the memoization i need help with :) I need help doing a pascals triangle problem with memoization. I want to get ...