Tagged Questions
2
votes
2answers
83 views
stepping through a function line by line
This user guide:
http://www.haskell.org/ghc/docs/latest/html/users_guide/ghci-debugger.html
advertises:
Execution can be single-stepped: the evaluator will suspend execution
approximately ...
5
votes
2answers
165 views
How is the calculation of types in Haskell
Lets say
flip :: (a->b->c) ->b->a->c
const ::d->e->d
type of (flip const) would be
a=d,b=e,c=d
in
b->a->c
so the type would be
e->d->d
But for ...
1
vote
1answer
99 views
Anyone having trouble install Control.Pipe?
I have the current version of cabal and running cabal install Pipe gave me no issues. But I tried these two imports:
import Control.Proxy
import Control.Pipe
But I'm getting this error message:
...
5
votes
1answer
82 views
Instancing Monoid for a Type
I have a Type in Haskell to make a Map have several values associated to a key.
If I compile the following code:
type Mapa k v = Map k [v]
instance Monoid (Mapa k v) where
--mempty :: Mapa k v
...
15
votes
0answers
292 views
Why does ghci desugar type lists and type families? Can this be selectively disabled?
I'm trying to make the types ghci displays for my libraries as intuitive as possible, but I'm running into a lot of difficulties when using more advanced type features.
Let's say I have this code in ...
2
votes
1answer
119 views
GHCI not so lazy on Windows?
Typing following into GHCI on Windows:
foldl (+) 0 $ take 100000000 $ map sqrt [1..]
gives:
<interactive>: out of memory
while compiling (with GHC) and running this program:
main = do
...
3
votes
3answers
79 views
Using quickCheck
I wrote an implementation for foldl and wanted to check if it worked, I tried some cases and it seems to be working well but I want to make sure.
I read about quickCheck and tried it, but I can't ...
3
votes
3answers
109 views
Type inference list with function composition
I'm attempting to take the square of the sum of integers in Haskell using a fold. However, I'm getting a cryptic error from GHCi. Here is my one-liner:
((^2) . foldl) (+) 0 [1..100]
What I'm ...
7
votes
2answers
160 views
Why can I omit the constructor when referring to newtype wrapped number types?
On page 321 of Real World Haskell
There are these codes,
...
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
newtype AInt = A { unA::Int }
deriving (Show, Eq, Num)
instance Monoid AInt where
...
0
votes
0answers
70 views
Calling “gnuplot” from within ghci corrupts the terminal. Is it possible to restore it?
For example, see this session:
Prelude> import System.Process
Prelude System.Process> system "gnuplot filename.gnu"
Prelude System.Process>
Now, whenever I type at the terminal, nothing ...
2
votes
2answers
121 views
How do I terminate a socket server in ghci?
I wrote a webserver with, say, the webserver package, and can start it in ghci with:
:main localhost 8000
If I Ctrl-C it and run that again, I get
*** Exception: bind: resource busy (Address ...
2
votes
3answers
174 views
Installing Haskell packages on Mac
I can't seem to get a few Haskell packages to install on my Mac (10.6.8). I first tried Happstack and it failed and then I tried Snap.
Sometimes when I run ghci I get a segmentation fault.
Other ...
2
votes
1answer
118 views
Testing FFI Code with GHCi
Good (your local time of day), everyone.
I went through Real World Haskell's chapter on the Foreign Function Interface,
and did some follow-up reading here. I'm now experimenting with binding
to C ...
1
vote
1answer
83 views
Could we have a briefer :info output in ghci?
Is there a reason why the output of :info in ghci is listing the type name after every class it belongs to? For example
Prelude> :info Int`
prints
...
instance Bounded Int -- Defined in ...
7
votes
4answers
196 views
How to clear ghci's function result cache?
GHCI seems to cache the results of functions during an interactive session. It's easy to notice, just call a time-consuming function twice. On the second time, the result will appear immediately.
Is ...
6
votes
2answers
97 views
Why does signature change after an assignment
Playing around in ghci I got the following expression: unlines . map (\(a,b) -> show a ++ " " ++ show b)
Now when I check it via :t I get:
> :t unlines . map (\(a,b) -> show a ++ " " ++ ...
1
vote
2answers
119 views
Strict version of foldl running infinitely
I can't understand why the following function causes an infinite loop:
import Data.List
isTrue = foldl' (&&) False (repeat False)
9
votes
1answer
211 views
Difference for ncurses between interpreted and compiled Haskell?
I have a strange problem with functions timeout and getch from the ncurses library used in Haskell. When I use them from GHCi or runhaskell, they work as expected -- getch waits for the number of ...
2
votes
0answers
53 views
ByteCodeLink error with GHCi and C file
When I run my file using a foreign import for a C function I made, I get this error.
ByteCodeLink: can't find label
During interactive linking, GHCi couldn't find the following symbol:
...
4
votes
3answers
105 views
How do I use a let within a do block in ghci?
I'm trying to create a do block interactively in ghci. As long as I don't define a variable with in block, it's fine:
Prelude>let a = do putStrLn "test"; putStrLn "other test"
Prelude>
but I ...
2
votes
1answer
49 views
Loading several C object files into GHCi
I have a Haskell project that contains almost a dozen C files that I access via FFI. All documentation I've found suggest that in order to use GHCi while developing I have to invoke it with the C ...
1
vote
1answer
70 views
how to reuse cabal compiled modules when using ghci
I have a fairly large haskell project, and running ghci on some files can require compiling dozens or hundreds of modules before it gets to a prompt, which can take a number of minutes. I'm using ...
1
vote
3answers
100 views
convert expression into the string describing its type in haskell script?
We all know that :t in ghci gives the type of an expression:
Prelude> :t [1..]
[1..] :: (Enum t, Num t) => [t]
What I need is an equivalent of :t in haskell script(I'll call it typeStr) :
...
13
votes
3answers
226 views
Find inferred type for local function
Is there a way in ghci (or ghc) to find what the inferred type of a local function is?
E.g. if I have a function
f l = map f' l
where f' = (+1)
is there a :t-like way in ghci to see what the ...
5
votes
1answer
85 views
Runtime exception with Data Parallel Haskell / GHC 7.4.2
I'm trying to do some simple experiements with Data Parallel Haskell running, but I clearly have some options wrong. even when I try something very simple like
sumP [:1.0,2.0:]
I get an exception
...
3
votes
1answer
75 views
linking extra libraries/objects failed
I made FFI bindings to C++ unordered_map(a.k.a. hash_map) container and its wrapper library called libstl.a.
At the first time, it used to work well. But after some point, it has failed to link the ...
0
votes
1answer
70 views
Printing Text.Pandoc.writers into ghci : No Show instance
What am I trying to do ?
Print under ghci the association list of formats and writers.
See doc :
writers :: [(String, Writer)]
Association list of formats and writers.
What has been tried
...
2
votes
2answers
145 views
Ambiguous type variable when programming an AI Solver in Haskell
I'm programming an AI General Problem Solver in Haskell for the AI Planning course at Coursera and ghci complains about an ambiguous type variable. Here is the Haskell code and the error I get:
-- ...
3
votes
3answers
57 views
Code for “Implicit Configurations” paper
I'm trying to run this code in ghci:
http://www.cs.rutgers.edu/~ccshan/prepose/Prepose.hs
This is the code associated with the paper "Functional Pearl: Implicit Configurations"
...
-1
votes
1answer
87 views
Haskell returning incorrect result [duplicate]
Possible Duplicate:
Haskell: Unexpected output for expression [0, 0.1 .. 1]
In Haskell, does anyone know the reason for the following result?
Prelude Data.List> map (\x -> x - 0.1) ...
0
votes
1answer
83 views
Numeric.Probability.Monad not exported from probability package and therefore examples don't work?
I was playing around with the probability package, trying to understand how the various examples work. A number of the examples import Numeric.Probability.Monad which is hidden it seems and therefore ...
8
votes
2answers
169 views
Stack Overflow in GHCI when attempting to display a number
In trying to learn Haskell, I have implemented a pi calculation in order to understand functions and recursion properly.
Using the Leibniz Formula for calculating pi, I came up with the following, ...
1
vote
1answer
111 views
Haskell functions in GHCi
I am completely new to Haskell. I have been trying to learn how to write functions, lets say to add two integer numbers. I am currently using GHCi to code Haskell. I tried learning from ...
3
votes
1answer
297 views
Find max element and index of a list in Haskell
I'm taking my first steps into the wonderful world of Haskell. As an exercise, I would like to implement a method which finds the maximum element of a list and its index. Let's call this function ...
4
votes
3answers
111 views
How do I look up Haskell commands and keywords?
I'm teaching myself Haskell but one problem I'm running into a lot with haskell is that it's really hard to find the definitions of Haskell keywords, syntax and commands. I've gone through some ...
6
votes
1answer
87 views
WinGHCi won't start
So, I tried to ":set prompt "λ> "" in WinGHCi, it crashed and after that wouldn't start again (Not Responding). I reinstalled the Haskell Platform and it still won't start (Not Responding). GHCi works ...
3
votes
2answers
179 views
haskell parse error in pattern for n+k pattern
I have started working my way through Erik Meijer's 13-part lectures (and Graham Hutton's slides) to learn Haskell.
On the slides for Chapter 4, on page 13, it introduces the pattern-matching ...
4
votes
1answer
107 views
Is there a way to view a list of Prelude functions from the Haskell console?
Is there a way to view a list of Prelude functions (such as Data.Char) from the Haskell console, instead of visiting Hoogle?
12
votes
4answers
311 views
GHCi “let” — what does it do?
I'd appreciate is someone could point to docs on what "let" does in GHCi, or failing that, explain it convincingly :-).
So far as I can tell, "let" (without "in") is not part of the Haskell language ...
2
votes
1answer
122 views
How to make Haskell or ghci able to show Chinese characters and run Chinese characters named scripts?
I want to make a Haskell script to read files in my /home folder. However there are many files named with Chinese characters, and Haskell and Ghci cannot manage it. It seems Haskell and Ghci aren't ...
2
votes
1answer
117 views
How to get an offline Haskell debug trace?
In the Haskell docs here http://www.haskell.org/haskellwiki/Debugging it mentions Hat to do offline debug traces, but that page is online. I found it via Google but it seems outdated; what is the ...
0
votes
3answers
79 views
start ghci with extensions specified in cabal configuration file
In my cabal file I have a bunch of language extensions enabled. Let's say I have
TemplateHaskell
QuasiQuotes
CPP
Is there a way to start GHCi with these enabled automatically? instead of manually ...
0
votes
1answer
51 views
Cabal IPPrint package fails to build
I am trying to get this coloured ghci prompt to work. I am getting the following error which I suspect is due to cabal not updating the right package. Anyone has any idea?
; cabal install IPPrint
...
1
vote
3answers
127 views
Finding out which module a function belongs to
In ghci (haskell) is there a command which will tell me which module (out of the loaded modules) a function belongs to. e.g. if the function is called whichMod, then it would work as follows :
...
0
votes
1answer
77 views
Haskell importing Modules
I need to import Data.Char into my .hs file, in order to run the script in GHCi. When I just add "import Data.Char" the console seems to complain and gives me parse error. How do I do that properly? I ...
3
votes
1answer
146 views
Haskell GHCI not loading compiled object file
I would like GHCI to load the compiled object code for a module which when compiled is significantly faster than the none compiled version. This was working well when all of the files were in the same ...
7
votes
1answer
172 views
Expand type synonyms, type families with GHCi
I am wondering if there is functionality that exists within GHCi (or elsewhere) to expand type synonyms and families out of an arbitrary type expression.
For example, if I have these types,
data A = ...
5
votes
2answers
147 views
How to read an integer written in exponential form with Haskell?
To read an integer written in decimal form is quite simple :
Prelude> read "1000000000" :: Int
1000000000
But how to read an integer written in exponetial form ?
Prelude> read "10e+9" :: ...
1
vote
1answer
61 views
How to look for symbol into installed packages
When I need look for what package contains a symbol I use Google or Hoogle. 99% cases I found a reference to Hackage (it's good).
There's way to lookup locally?
Example:
$ ghci
Prelude> :i ...
2
votes
2answers
153 views
Is there any ghci GUI frontend/extension that support inline graphics display like ipython? [closed]
I mean it have features like inline graphics display, worksheet mode, audio playback and ect ... like ipython, maple and matlab
I found winghci on windows but it doesn't seem to have those features. ...




