The winghci tag has no wiki summary.
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
1answer
212 views
How to set the working directory of WinGHCi
I just installed WinGHCi. When I try to load an .hs file with Ctrl+L, it opens the file browser in C:\Program Files (x86)\Haskell Platform\2012.2.0.0\winghci which is where I installed this. I don't ...
2
votes
2answers
191 views
Error to launch winghci shipped in haskell platform package 2012.2.0.0
Everytime I double click winghci.exe an error message CreateGHCiProcess failed with failed with error 2 pops. I assume the installation hasn't completed setting environment variables successfully ...
4
votes
1answer
763 views
How to see the current working directory in WinGHCi
I've started to teach myself Haskell, and for that I've installed The Haskell Platform for Windows. I'm using WinGHCi as of now. I learned that it has command :cd which is used to change directory. ...
1
vote
1answer
195 views
File processing-Haskell
How can I implement in haskell the following:
I receive an input file from the command line. This input file contains words separated with tabs, new-lines and spaces.
I have to replace these ...
3
votes
2answers
871 views
Haskell : understanding “No instance for” error messages in ghci
Question 1
Hi, if in WinGHCi I intentionally do the following wrong piece of code :
3 4
Then the error message I get is
<interactive>:1:1:
No instance for (Num (a0 -> t0))
...
4
votes
2answers
210 views
Haskell : can only load one file at a time via :load
suppose I have two modules NecessaryModule1 & NecessaryModule2 (as outlined in the post Haskell : loading ALL files in current directory path. Then I have noticed in both WinGHCi and GHCi that if ...
1
vote
1answer
125 views
Haskell : hide function in module (i.e. make function usable only by other functions in same module)
suppose I have a file NecessaryModule.hs, which has the following internals :
module NecessaryModule where
addNumber1 :: Int -> Int -> Int
addNumber1 a b = a + b
addNumber2 :: Int -> Int ...
3
votes
1answer
558 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' ...
5
votes
2answers
238 views
Haskell : display/get list of all user defined functions
Is there a command in Haskell which displays (or get as a list of) all the user defined functions which have been loaded/defined in the GHCi? Thanks
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
...
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 ...
7
votes
4answers
213 views
How do I access a list element I've added with the cons (:) operator?
I'm new to Haskell (and functional programming in general) and was wondering how I can access a new element that I've added to a list using the cons (:) operator?
For example, using WinGHCi I create ...
2
votes
1answer
352 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 ...
1
vote
0answers
161 views
Error with winGHCi Not in Scope
I have just started programming Haskell using Haskell Platform. I'm running winGHCi 1.0.6.
I created a "basic.hs" file with the following code: square x = x * x
I create a folder under Haskell ...
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
3answers
183 views
haskell: creating list of records
How to create a list of records in haskell
I have a Record
data TestList = Temp1 (String,[String])
| Temp2 (String,[(String,String)])
deriving (Show, Eq)
I am creating a list of ...
1
vote
1answer
170 views
Haskell: Creating record of list of string and pair of <string and list of string>
How to create a record of list of string and, pair of in Haskell
I tried the following
For creating a record of list of string
data testList = test [string]
deriving (Show, Eq)
When I run ...
1
vote
1answer
228 views
Input redirection in WinGHCi
I know I can do the following from a command prompt:
$ runghc WC < quux.txt
How do I do this in WinGHCi? I know I have to first load the file like this:
Prelude> :load WC
But then what? ...
2
votes
2answers
451 views
Some issues when using WinGHCi
With WinGHCi, how can one implement the following code?
soma :: Int -> Int
soma 1 = aluno 1
soma n = aluno n + soma (n-1)
I am currently writing multiline code using
:{
...
:}
but that ...
0
votes
2answers
251 views
Clearing WinGhci's command prompt (and also its values)
How can I clear WinGhci's (one of Haskell's Windows IDEs) command prompt and all the current "session" values?
