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

learn more… | top users | synonyms

4
votes
2answers
183 views

Why does this start complaining about ambigous types when I extend it?

The following returns True (because 2147483647 is a prime). length [f | f <- [2..(floor(sqrt 2147483647))], 2147483647 `mod` f == 0 ] == 0 Why doesn't it work when I try to extend it as below? ...
6
votes
2answers
277 views

Monads at the prompt?

Is it possible to interact with arbitrary Monad instances incrementally at the GHCi prompt? You can enter "do" commands interactively: Prelude> x <- return 5 But as far as I can tell, ...
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 ...
6
votes
2answers
516 views

Any way to print out a type of a variable in a do / while / let block?

Is there any way to print out the inferred type of a nested variable in ghci? Consider the code, let f = g where g (x :: Int) = x then, it'd be nice to query the type of g, e.g. :t f.g would ...
8
votes
3answers
767 views

Haskell / GHCi - loading modules from different directories

My haskell application has the following directory structure: src/ utils/Utils.hs subsystem/Subsystem.hs The Subsystem module imports Utils module. I would like to hand test this code in ...
0
votes
2answers
254 views

What is the -i option while compiling hs file using GHC and how to do same in GHCi?

Ok, I've been using the -i compile option to specify the folder to some haskell source when I compile using GHC. ghc -threaded -i/d/haskell/src --make xxx.hs I understand it uses those files as ...
2
votes
2answers
220 views

Haskell: Why is the type inferred by GHC for main method not quite complete?

For example, take the code written by Don Stewart in reply to some Stack Overflow question: import Control.Monad import qualified Data.HashTable as H import System.Environment main = do [size] ...
4
votes
1answer
273 views

Missing instance errors, module loading and GHCi

it came from another question, but things has changed. The type signature of Parsec function 'parse' and the class 'Stream' I'm now wondering what does import do to make things ...
0
votes
1answer
211 views

Haskell Compiling Problem using GHCi Windows

I have developed a haskell application which is tested with WinHugs interpreter working fine .. when i try to comiple the same application using WinGHCi it prompts a error lexical error in ...
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
3answers
245 views

Help me understand this Haskell (GHCI) type error: (Num [Char]) when appending number to string

I've been doing my annual attempt to learn Haskell this weekend, and as ever when I actually try to write a recursive function (rather than just type one in from a tutorial), I get a type error. I'd ...
5
votes
2answers
561 views

“No instance for” error

Following an example in http://en.wikibooks.org/wiki/Haskell/Beginning Prelude> let abs x = if x < 0 then -x else x Prelude> abs 5 5 Prelude> abs -3 <interactive>:1:6: No ...
4
votes
1answer
196 views

Haskell do syntax and I/O

I was playing around with a simple program in Haskell: hello :: String -> String hello s = "Hello, " ++ (trim s) ++ "!\n" trim :: String -> String trim [] = [] trim s = head $ words s main :: ...
1
vote
3answers
325 views

haskell word searching program development

hello I am making some word searching program for example when "text.txt" file contains "foo foos foor fo.. foo fool" and search "foo" then only number 2 printed and search again and again but ...
1
vote
5answers
115 views

Taking a finite part of an infinite structure

I have to define an infinite cyclist enumInts::Cyclist Integer containing all integers in the natural order with zero being the current element. What I did is: data Cyclist a=Elem (Cyclist a) a ...
2
votes
1answer
199 views

Declarations at the GHCi prompt

I have just installed Haskell Platform for Windows (version 2011.2.0.1), and started to work through the HaskellQuestions.pdf The second question requires "x = 3" as the answer. But when I enter ...
-4
votes
1answer
441 views

Syntax error: parse error on input ' -> ' ) [closed]

I have a problem in this code: module Blueprint where data Colour = Blue | Green | Red deriving ( Eq, Show ) data Car = Car { wheels :: Integer , colour :: Colour } ...
5
votes
2answers
3k views

Haskell: Deriving Show for custom type

I have this type definition: data Operace = Op (Int->Int->Int) String (Int->Int->Int) deriving Show I want to print this type into the interactive shell (GHCi). All that should be ...
4
votes
5answers
242 views

Difference between == and = in Haskell

I still have trouble getting my head around the difference between the == and = in Haskell. I know the former has something to do with being an overloaded type and the latter 'gives the result' of the ...
2
votes
3answers
323 views

ghci segfault with simple math

Can anyone explain this to me? I'm using a recent version of the GHC. Prelude> let f x = 1/((x**2)-36) Prelude> f (0 - 6.5) 0.16 Prelude> f (0 - 5.999) -Segmentation fault ...
4
votes
2answers
128 views

TCP works in GHCi, buffered until program exit in program compiled with Leksah

I wrote this simple prototype client to send commands to a server I'm developing. It works perfectly running in GHCi, but the compiled version buffers everything typed in until I type in "quit" and ...
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. ...
0
votes
1answer
127 views

Updating a list of elements within a list? [duplicate]

Possible Duplicate: Update a list of a list of elements in a single list? I have a list of values as shown below: [ ["Off","Off","Off"], ["Off","Off","Off"], ["Off","Off","Off"] ] ...
4
votes
1answer
339 views

Infinite recursion in Haskell

This question is essentially a duplicate of Debugging infinite loops in Haskell programs with GHCi. The author there solved it manually, though I'd like to know other solutions. (my particular ...
5
votes
2answers
396 views

Haskell - fmap fmap doesn't work

I'm using GHCi (version 6.12.3) to play a bit with Haskell. I recently read about functors and applicative functors thought if you couldn't something similar to <*> of applicative functors be ...
4
votes
3answers
1k views

function definition in haskell/ghci

I'm using Haskell 2010.1.0.0.1 with ghc6. Typing :t at the ghci prompt followed by the name of a function shows us the type of the function. Is there a way to view the function definition as well? ...
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 ...
5
votes
2answers
206 views

How does :t in ghci access all that introspective information?

It appears to be impossible to introspect type class constraints on functions and data types and such. However, ghci appears to do it. Prelude> :t show show :: (Show a) => a -> String ...
4
votes
1answer
935 views

ghci 'Not in scope:' message

I'm going through the 'Learn you a Haskell' tutorial and I am at this part: lucky :: (Integral a) => a -> String When I try to execute this line I get: <interactive>:1:1: Not in scope: ...
16
votes
1answer
402 views

In GHCi, why does the kind of the function arrow `:kind (->)` include question marks `(->) :: ?? -> ? -> *`? [duplicate]

Possible Duplicate: Haskell Weird Kinds: Kind of (->) is ?? -> ? -> * In GHCi (version 7.0.2), if I ask for the kind of the function type, the result has question marks: ...
8
votes
5answers
765 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 ...
3
votes
1answer
166 views

How to find type signatures of multiple imported methods in GHCI

I'm using a library, which I've loaded into GHCI. From the names of the functions is not obvious to me which one I should be using; I'm sure it exists, and want to see a list of type signatures of ...
2
votes
1answer
276 views

Why can't I define a type in GHCi?

Why can't I define a type in GHCi? Prelude> data MyBool = T | F <interactive>:1:0: parse error on input `data'
2
votes
3answers
290 views

Map newlines in GHCi

Simple question, but I can't seem to figure it out. I have a list, and I want to print out each element of it on its own line. I can do map show [1..10] for example, which will print out them all ...
0
votes
1answer
270 views

Open Browser From Haskell Interpreter

I've been messing around a lot with oeis.org, I found a module on Hackage that provides an interface to oeis.org (Math.OEIS), but it displays its results on the command line. I was wondering if anyone ...
1
vote
1answer
233 views

Pass file to GHCi and receive output on command line?

In Python one can say this: python script.py from the command line and receive script.py's output inlined. Is it possible to do this with Haskell's GHCi? Basically I'm wondering if there's a way to ...
3
votes
2answers
338 views

Haskell modules: hidden names and ghci

I'm trying to export just a subset of names from a Haskell module, but ghci happily lets me access even the hidden names. module Hiding (shown, calc) where calc = shown * hidden shown :: Int shown ...
1
vote
2answers
583 views

Function variable not in scope Haskell

Hi i have the following code import Data.Maybe import Test.QuickCheck import System.Random rndExpr :: Gen Expr -> IO Expr rndExpr gen = do rnd <- newStdGen return (generate 5 rnd ...
0
votes
2answers
502 views

need help with haskell expression (Not in scope compiler error)

Hi I have the following code expression :: String → Maybe Expr expression s = case parse expr s' of Just (a,"") → Just a _ → Nothing where s' = filter (λx → x ≠ ' ') s ...
1
vote
2answers
184 views

need help writing a function candidates in Haskell

Hi take a look at this thread already processing this subject And also this thread might be of intrest. Im trying to write a function candidates :: Sudoku -> Pos -> [Int] that given a ...
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 ...
7
votes
1answer
451 views

Persistent console history in ghci

On 6.12.2, this just worked for me, I think. But now I'm on a new box with 6.12.3 (generic unix binary), and there's obviously some setting I'm missing. I have a console history in ghci within a ...
1
vote
2answers
243 views

What directory do you put .hs files in so you can load them using :l in GHCI?

I am running GHCI 6.4 in Windows 7. I do not know what sub directory of the .\ghc\ directory to add .hs files to. Every time I try using :l it tells me that the file cannot be found. Has Anybody else ...
4
votes
1answer
168 views

Strange Haskell/GHCi problem

So I have a bit of code*, that when taking three points, is supposed to return a direction. I've written this solution, but every time I try to run it, it causes the GHCi to freeze, so I'm wondering ...
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 ...
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 ...
8
votes
2answers
2k views

Specifying package name for module-related commands in ghci

Is there a way to specify the package name for a module for the :browse, :load or :module commands in ghci (version 6.12.1) ? Some module names are ambiguous: Prelude> :module Control.Monad.Cont ...
2
votes
4answers
727 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
4answers
331 views

GHCi usage question

I am studying Haskell and use Emacs+Haskell mode as my editor. After playing some simple expressions in GHCi, I am wondering whether these IDE/editor functionality that exist in Visual Stuido for ...
2
votes
3answers
474 views

Is there a way to limit the memory, ghci can have?

I'm used to debug my code using ghci. Often, something like this happens (not so obvious, of course): ghci> let f@(_:x) = 0:1:zipWith(+)f x ghci> length f Then, nothing happens for some time, ...