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

learn more… | top users | synonyms

7
votes
1answer
260 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 ...
2
votes
1answer
164 views

How to compile BNF Converter?

Did anyone succeed in building BNFC with ghc-7.2.1 and alex-3? I was trying to fix it manually, but there are lots of errors. Does anybody know where can I find some patches that will help me to get ...
11
votes
2answers
404 views

Haskell: Why is there no type mismatch (and why does this compile)?

I was so sleepy that I wrote the following code (modified to just show the confusion): fac s = take 10 [s, s `mod` 1 ..] maxFactor x = if (s == []) then x else head ...
59
votes
1answer
2k views

What is the best way to test and interact with inner functions defined inside a toplevel function?

When I program in Javascript, I find it extremely convenient to be able to use the debugger to halt program execution at any point and to be able to runs commands and inspect variables from there. ...
3
votes
1answer
196 views

Why would this defeat Haskell's lazy evaluation?

Today I am writing a small program in Haskell. I found that in ghci's interactive mode, this: take 100 $ foldl (\s a -> s ++ [last s + a]) [0] (1:[6,12..]) would hang ghci and make it crash due ...
1
vote
1answer
123 views

Printing an element from a list in Haskell

I'm trying to sort a list and to check my sorting algorithm is working as I would expect I would like to print out specific elements of the sorted list, something I would expect to be a simple task ...
1
vote
1answer
593 views

Haskell : GLUt32 error message when running my program

I'm new to haskell and I'm trying to do my exercise for my class, I've written up the following and tried evaluating the main it but it spits out an error. (In WinGHCi) Loading package GLUT-2.3.0.0 ...
3
votes
3answers
293 views

Storing values in a data structure Haskell

I'm trying to store randomly generated dice values in some data structure, but don't know how exactly to do it in Haskell. I have so far, only been able to generate random ints, but I want to be able ...
0
votes
2answers
210 views

How can I stop Hint, a Haskell runtime interpreter library, crashing the GHC interpreter?

How can I stop Hint, a Haskell runtime interpreter library, from crashing the GHC interpreter? It gives "Bus Error", "Illegal Instruction" or "Segmentation Fault" when I try to load a module using it ...
0
votes
0answers
321 views

Haskell GHCi compilation error <no location info>: can't find file

I'm only using Haskell on Win for a few days now, but since yesterday i keep getting the same error when trying to compile something ": can't find file test.hs". Here is what I do: Open command ...
5
votes
2answers
132 views

ghci - eager compilation in interactive mode?

The following program type checks if I specify it on the command line (e.g. ghci file.hs): import Data.Ratio foo = let x = [1..] y = (1%2) + (head x) in y However, if I enter it ...
13
votes
1answer
867 views

ghci tab-completion in haskell-mode

It's quite nice to have ghci integrated with Emacs through inferior-haskell-mode: this adds a wonderful possibility to quickly navigate to compile error locations, interactively inspect types, ...
2
votes
1answer
350 views

Hlint integration with (Win)GHCi

Using Hlint via the command prompt works for me, but I have problem trying to perform the GHCi integration. http://community.haskell.org/~ndm/darcs/hlint/hlint.htm says that "the script is at ...
13
votes
6answers
338 views

How do you check the type of a local variable?

Simple question. Is it possible to check the type of a variable that is only alive within a function? For example: main = do x <- something How can I check the type of x? I can't do ...
1
vote
1answer
78 views

How should I “create commands with implicit contexts” in GHC's ghci

I'm aware that ghci effectively works inside the IO monad. Initially I'd imagined that ghci might handle another monad or a transformation of IO, but the documentation make it clear this doesn't ...
3
votes
1answer
352 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
91 views

GHCi - Breakpoint is skipped on second run

I'm new to Haskell and I'm getting an annoying behaviour when debugging. I add my break point using :break I run main Everything is ok I type :continue to finish the execution When I rerun main, ...
2
votes
5answers
239 views

loading .hs script into interpreter

In Haskell ghci, I tried Prelude> :load filename.hs Ok, modules loaded: Main. unfortunately I can't run any of the functions defined in the file. I compiled the file without any errors, but ...
0
votes
2answers
599 views

Compile multi .hs files of Haskell - Unix

I created some files from a project in Unix, they are a lot and if I want to execute it in another pc or folder I need to copy all files to there. They are all connected in import. How can I make an ...
6
votes
2answers
118 views

Equivalent functions producing different interpreter results

Background: I'm investigating anonymous recursion, and I'm taking on the challenge of implementing the prelude without using any named recursion just to help it all sit nicely in my mind. I'm not ...
7
votes
3answers
506 views

how does one set a program's command line arguments, for ghci?

Suppose some Haskell file is executed with runghc Queens.hs gecode_compile Now, this fails, and I want to debug it with ghci. How do I pass the option gecode_compile into the program, so getArgs ...
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 ...
3
votes
2answers
253 views

Haskell invalid type signature

Quick question, what is wrong with this? (get) :: [a] -> Int -> a -- <- line 21 (x:xs) get 0 = x (x:xs) get (n+1) = xs get n ghci gives this error when I try to load the file that ...
8
votes
3answers
1k views

How to run a haskell file in interpreted mode

I've been told you can interpret haskell files (which I assume means they will work like Ruby/Python/Perl). Can't find the command line option on ghc to do this, though. It always wants to compile my ...
2
votes
1answer
243 views

Trying to write a function point free, GHCI does not approve

As an exercise I'm trying to implement interesting parts of the prelude manually. Whenever I spot an opportunity to go point free I take it. However this has led me to a brick wall in the most ...
6
votes
2answers
493 views

Writing Haskell interpreter in C++ (using ghc or hugs as library)

I'm writing a C++ application that needs to interpret and evaluate haskell code. This code isn't known at compile time but given by the user. Is there a way to use a haskell compiler/interpreter (like ...
7
votes
3answers
184 views

Haskell: Implement “randoms” (a.k.a., Ambiguous type variable)

I am reading through LYAH, and in Chapter 9, I found a curious problem. The author provides an example of implementing the "randoms" function: randoms' :: (RandomGen g, Random a) => g -> [a] ...
14
votes
1answer
344 views

Can I add an instance declaration in GHCi

I was messing around with HashMap and tried to use a Data.Bson.ObjectId as a key. I, of course, discovered that there is not a Hashable instance for that structure. That's ok, because writing one is ...
11
votes
1answer
198 views

How does GHCi pick names for type variables?

When using the interactive GHC interpreter, it's possible to ask for the inferred type of an expression: Prelude> :t map map :: (a -> b) -> [a] -> [b] It seems that it takes the names ...
3
votes
5answers
623 views

Type inference in GHCi vs. manual signature

when I type :t map length . sum into GHCi, it says that the type would be: map length . sum :: Num [[a]] => [[[a]]] -> [Int] However, if I create a file type-test.hs containing x :: Num ...
11
votes
3answers
672 views

Multi-line commands in GHCi

I am having problem in entering multi-line commands in ghci. The following 2-line code works from a file: addTwo :: Int -> Int -> Int addTwo x y = x + y But when I enter in ghci, I get ...
11
votes
4answers
277 views

Haskell: Function application with $

In the following snippet, you can see my two collatz functions I wrote in Haskell. For the recursive application I used parentheses in the first example (collatz) to get the right precedence. As I ...
2
votes
1answer
122 views

Infinite loop when trying to define instance Show for a datatype

I have a installed module with data type Card. I make it instance of class Show but something go wrong in the ghci: module Poker where data Card = Card Int ... instance Show Card where show ...
6
votes
1answer
439 views

How can I load a runhaskell script without a .hs extension with ghci?

I have written a script in haskell named testscript with the following code: #!/usr/bin/env runhaskell main = putStrLn "hello" After making the script executable, I can run it using ./testscript. ...
6
votes
2answers
213 views

GHCi environment dump

Is there is way in GHCi to basically get a state dump? By this I mean a list of: All loaded operators along with it's precedence, associativity, and signature. All loaded classes. All loaded data, ...
0
votes
3answers
109 views

Type synonym for Haskell giving type errors

I am attempting to create a type synonym that looks something like this: data Result = Either String [Token] I'm having difficulty because while this code compiles, when I attempt to create a ...
6
votes
1answer
209 views

ghci special case for Applicative?

In ghci: λ> :t (pure 1) (pure 1) :: (Applicative f, Num a) => f a λ> show (pure 1) <interactive>:1:1: No instance for (Show (f0 a0)) arising from a use of `show' ...
2
votes
3answers
223 views

Haskell: Are there other things like “_” that you can use to say that you don't care what the value is?

So I wrote a hexapawn game and I'm trying to make a function that returns True if the board is in a winning state, it looks like this at the moment: checkWin :: BoardState -> Bool checkWin ...
1
vote
1answer
395 views

FreeGlut does not work in ghci

I wrote a small program using the "Glut" import Graphics.Rendering.OpenGL import Graphics.UI.GLUT main = do (progname, _) <- getArgsAndInitialize createWindow "Hello World" mainLoop The ...
3
votes
1answer
333 views

Cannot import HUnit into ghci

I've just installed HUnit, and want to import it into ghci. Prelude> import HUnit <no location info>: Could not find module `HUnit': Use -v to see a list of the files searched ...
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 ...
0
votes
4answers
307 views

Error loading function from file in GHCi

I'm completely new to Haskell. To grasp the basics I've started working through 'Learn you a Haskell for Great Good'. I'm stuck on the simple matter of loading a function from a file. The file is ...
10
votes
1answer
282 views

A ghci session without Prelude

This question arose on #haskell irc chat: How can I start ghci without importing prelude? The possible answer seemed obvious: ghci -XNoImplicitPrelude, or load a file with import Prelude () ...
7
votes
2answers
204 views

A Haskell interpreter /w type definitions

Is there a Haskell interpreter that accepts type definitions or preferably all kinds of statements? I've already tried ghci and hugs and none of these does that. Is there some particular reason that ...
5
votes
2answers
417 views

Automatically reloading ghci & running hlint on file updates

I was thinking about my ideal haskell editing workflow: I open three terminals (split using iterm2). Terminal 1 runs vim for editing the haskell source files. Terminal 2 automatically runs hlint on ...
2
votes
1answer
239 views

Using GHCi to load a module without access to its source code

I create a simple module, TestModule.hs, which contains a single exported top-level definition testval = 2. I compile it, creating TestModule.o and TestModule.hi. I delete TestModule.hs. I then load ...
6
votes
1answer
725 views

How to use “cabal-dev ghci” with a non-sandbox, non-global (user?) package?

I'm trying out cabal-dev for a project I'm working on; the project is a library, and cabal-dev does a great job of building a sandboxed version of it - but I'm having trouble with part of my ...
7
votes
2answers
145 views

Keeping environment in ghci?

Basically when I :load name.hs my variables and such are gone. Googled and read docs but failed. Is there some option to tell ghci keep it all? Or it just can't be done because of the limitations? ...
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, ...