Tagged Questions
21
votes
4answers
805 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.
...
21
votes
6answers
519 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 ...
14
votes
1answer
248 views
In GHCi, why does the kind of the function arrow `:kind (->)` include question marks `(->) :: ?? -> ? -> *`?
In GHCi (version 7.0.2), if I ask for the kind of the function type, the result has question marks:
Prelude> :kind (->)
(->) :: ?? -> ? -> *
Why does the kind include question marks ...
14
votes
2answers
566 views
How to configure GHCi to automatically import modules
When I use GHCi, I almost always end up importing Control.Applicative, Data.List, etc. . Is there a way to configure GHCi to automatically import those modules.
Also, after importing them, how do I ...
13
votes
3answers
1k 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
...
12
votes
1answer
127 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 ...
12
votes
1answer
444 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, ...
10
votes
1answer
155 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 ...
10
votes
4answers
194 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 ...
9
votes
2answers
126 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 ...
9
votes
2answers
324 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 ...
9
votes
1answer
509 views
How do I use multiple where clauses in GHCi?
I'm playing around with GHCi for the first time, and I'm having some trouble writing multi-line functions.
My code is as follows:
Prelude> :{
Prelude| let diffSquares lst = abs $ squareOfSums lst ...
8
votes
1answer
118 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 ()
...
8
votes
1answer
178 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 ...
8
votes
4answers
930 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 ...
8
votes
1answer
111 views
How to make ghci support ^p to go up?
I use Ctrl p a lot instead of up arrow to go up on Terminal. How to make ghci support Ctrl p to go up?
I use ghci from ghc98 from port. Mac OS X 10.5.8.
8
votes
2answers
325 views
Can GHCi tell me the type of a local Haskell function?
Is it possible to query the ghci for the type it inferred for a function inside another function?
8
votes
7answers
841 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> ...
7
votes
3answers
103 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 ...
7
votes
3answers
103 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]
...
6
votes
2answers
102 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 ...
6
votes
1answer
118 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
175 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, ...
6
votes
1answer
129 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'
...
6
votes
2answers
152 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 ...
6
votes
2answers
208 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
3answers
161 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 ...
6
votes
1answer
329 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 ...
6
votes
2answers
909 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
...
6
votes
3answers
272 views
Why does this Haskell statement not evaluate lazily?
I have the following function defined:
ex 1 x = 1
ex 0 x = 0
ex b x = b ** x
Then, when I execute the following:
1 `ex` (sum [1..])
it tries to calculate the sum of the infinite sequence, ...
6
votes
4answers
858 views
Differences Between Hugs, Yhc and GHCi
There are differences between Hugs, Yhc and GHCi? If there are differences, What are they?
5
votes
2answers
171 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 ...
5
votes
2answers
114 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?
...
5
votes
1answer
204 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 ...
5
votes
2answers
160 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 ...
5
votes
2answers
123 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 ...
5
votes
2answers
167 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
...
5
votes
2answers
328 views
How do I get ghci to see packages I installed from cabal?
I've installed the such-and-such a package using cabal, and I can build a program that depends on it using cabal build. But when I load the same program in ghci, ghci complains that it "Could not find ...
5
votes
4answers
2k 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 ...
5
votes
3answers
686 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?
...
4
votes
3answers
65 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 ...
4
votes
2answers
136 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?
...
4
votes
1answer
185 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 ...
4
votes
1answer
132 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 :: ...
4
votes
2answers
95 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 ...
4
votes
2answers
216 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
4answers
326 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 ...
4
votes
1answer
164 views
Info on type family instances
Intro:
While checking out snoyman's "persistent" library I found myself wanting ghci's (or another tool) assistance in figuring out stuff.
ghci's :info doesn't seem to work as nicely with ...
3
votes
2answers
109 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 ...
3
votes
5answers
128 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 ...