The Haskell Platform is a standardized library suite for the Haskell programming language.
2
votes
0answers
75 views
How to cross-compiling on Linux to Windows by GHC?
Is it possible to compile a foo.hs file by GHC in Ubuntu to an executable targeting windows or other platforms?
1
vote
2answers
122 views
Haskell the function 'main' is not defined?
Here is my basic program, but it states the function 'main' is not defined in module 'Main' how can I fix this?
here is my program
main = do
-- variable
a <- getLine
putStrLn a
0
votes
0answers
97 views
Introduction to folders of haskell platform?
I am stressed from many folders included in haskell platform
because i do not know the structure of libraries, can not find and read that needed for studying or programming somethings new.
anythings ...
1
vote
1answer
107 views
Haskell Persistent insert rows if not already in database
I'm trying to use Yesod and persistent to create a website. I'm a bit confused about how to use the persistent API.
Here's two of my tables
Feed
url Text
UniqueFeed url
Subscription
...
1
vote
2answers
154 views
Haskell: parse error on input '='
I keep gettin this message, what am i doing wrong?
data Pile a = Pile [a] deriving (Show,Eq,Ord)
flpile:: (Eq a, Eq b, Eq c) => Pile (a,(b,c))-> Pile (a,b,c)
flpile (Pile (a,(b,c)) = Pile ...
7
votes
2answers
142 views
Haskell library for HTTP communication
What is the recommended library for web client programming which involves HTTP requests.
I know there is a package called HTTP but it doesn't seem to support HTTPS. Is there any better library for it ...
1
vote
0answers
66 views
Why isn't cabal-install upgrading itself? [duplicate]
When I do a cabal update I get the following output:
Downloading the latest package list from hackage.haskell.org
Note: there is a new version of cabal-install available.
upgrade, run: cabal install ...
-6
votes
1answer
154 views
solving problems with haskell [closed]
First there is an integer(t) that is the number of test case.
Then 2*t lines follow. in each line there is a integer. We have to output the sum of each two numbers.
sample input:
3
1
2
3
4
5
6
...
3
votes
2answers
92 views
Haskell OpenGl and GLUT Ambiguous occurence
I am trying an OpenGL tutorial. I am running macosx with Haskell Platform installed
import Graphics.Rendering.OpenGL
import Graphics.UI.GLUT
main :: IO ()
main = do
(progname, _) <- ...
1
vote
1answer
212 views
Haskell: file to array for Dijkstra's Algorithm
I am building a graph to implement Dijkstra's algorithm and I am reading a file which contains
1 3 5
1 2 6
How would I read each line and store it as [(a,a,float)].
I need this to be able to use:
...
3
votes
1answer
105 views
When I press the space bar in the Leksah source editor, nothing happens. What packages do I lack?
I'm going to retry learning Haskell again... So I apt-get installed leksah, ghc, quickcheck, and cabal-install. It didn't work right from the start, this is why I had to install cabal-install and ...
0
votes
0answers
37 views
Haskell Platform library source — where?
Where can I get a complete set of source files for the libraries that are supplied with Haskell Platform 2012.4.0.0?
I am trying to get the source for the libraries for GHC current version ...
5
votes
2answers
202 views
What's the difference between ghc and the haskell-platform
I'm about to get into Haskell and I'm a bit confused why I'm recommended to install both "ghc" and "haskell-platform" via brew. Isn't ghc a haskell implementation/compiler? When do one need the ...
6
votes
1answer
185 views
How to change path of ghc?
I'm using HaskellPlatform-2012.4.0.0 on Win7. It's installed as portable. Paths are managed through .bat file so ghci and ghc works. Cabal config and folder are made semi-portable with this.
The ...
4
votes
1answer
84 views
Passing options to ghci when starting in Emacs
So if I want to run a threaded application in ghci I simply pass -threaded to ghci when starting. But how can I do this when starting it from inside Emacs? Can I customize the Emacs haskell mode for ...
6
votes
2answers
141 views
Graph and Network Library for Haskell
Any suggestions for a good graph and network library for Haskell ?
I'm looking on functionality something like which networkx library has for Python.
0
votes
2answers
67 views
How do you specify where to output the executable in a Cabal file?
Is there a way to customize the directory that the compiled executable cabal install makes gets saved to?
I've looked at http://www.haskell.org/cabal/users-guide/ for this information but am having a ...
2
votes
1answer
171 views
About the function monad
I have some confusion with the function monad. The function monad is defined as follow:
instance Monad ((->) r) where
return x = \_ -> x
h >>= f = \w -> f (h w) w
I tried ...
0
votes
1answer
183 views
how to properly install/ update haskell packages in mac osx
I am totally noob in Haskell, I am trying to follow a tutorial on how use it for the web.
I am using Mac OSX so I downloaded the haskell platform for OSX from http://www.haskell.org/platform/mac.html
...
6
votes
1answer
236 views
How to change path of cabal config file?
I am using HaskellPlatform-2012.4.0.0 on Win7. It's installed as portable. Paths are managed through .bat file so ghci and ghc works.
But cabal installs it self at C:\Users\name\AppData\Roaming\cabal\
...
1
vote
1answer
78 views
Data Type Haskell error
I declare some data type as follow:
data TX_OR_TY = TX | TY
data TX = X Int
data TY = Y Float
Now I write some function return their data type:
funcTX :: TX
funcTX = X 3
funcTY :: TY
funcTY = Y ...
2
votes
1answer
48 views
Making one executable depend on another in Haskell cabal
How do I make one executable in a cabal file depend on another in the same project?
I have a cabal file that builds two executables. One of the executables is a code generator that produces a Haskell ...
7
votes
3answers
704 views
Reader Monad Purpose
I am newbie to Haskell. I read the Reader Monad several times, but still don't understand about what is the purpose of the Reader Monad. The Reader Monad is so complex and seems to be useless. In ...
0
votes
1answer
58 views
Haskell type expression
I have two questions about Haskell type expression:
Question 1 -
I would like to declare a type NODE
data NODE = Node String ATTR
and a type ATTR contains 3 sub-type as follow:
Source Bool
...
0
votes
1answer
90 views
Yesod ghc.exe not responding when doing “yesod devel” Windows
I was starting to read about Yesod on Yesod website, and I tried to install it on Windows.
I followed the following steps :
I installed Haskell-Platform from their website for Windows.
I added ...
1
vote
1answer
150 views
how to install unittyped and base-4.6.0.0?
I have the Haskell Platform 2012.4.0.0 installed and I'd like to try out the unittyped package.
When I try to install it with cabal-dev -s some-dir install unittyped I'm getting the error:
$ ...
0
votes
1answer
121 views
Can't install happstack-hsp
I'm using Windows 7 with cygwin too.
I'd installed happstack-hsp fine with the Haskell Platform from February.
I just installed the Haskell Platform from April. I tried installing happstack-hsp ...
0
votes
1answer
216 views
Directed Graph in Haskell
I am now struggling with Haskell. Even, I have some experience with imperative languages, with OOP, but Haskell seems to be different from them. I under-evaluated Haskell, and think learning a new ...
1
vote
2answers
120 views
Haskell,I need to create something like ATM function, stored multiple list in .txt file and retrieve the record
Im new in haskell, i need some help with this program.
First, i store three accounts into a input.txt, so inside the file will got something like these ...
0
votes
1answer
33 views
How do I fix this error?
When I type yesod devel I get the following error:
ERROR: file devel.hs not found
How do I fix this?
If it's of any help, I'm on Ubuntu 12.04.1 LTS, my ghc version is 7.4.1 and my yesod version is ...
2
votes
2answers
352 views
How to fix Error 2 when trying to make haskell-platform?
I downloaded the Haskell-platform source from here: http://www.haskell.org/platform/linux.html, installed ghc, and did /.configure. However when I do sudo make, I get the following error:
...
0
votes
1answer
140 views
Haskell when the user input something.. sum up with the number in the txt file
Let's say that the user input = 6000 and the number inside input.txt is = 5000. The sum up will be 11000. The number that will be displayed on the screen and the value stored in the file will be ...
-2
votes
4answers
184 views
HASKELL - Change Type
I need to create a function f:: Log->[String] that does that (((o, i ,d),s) = [(o, i ,d)]
type Log = (Plate, [String])
type Plate = (Pin, Pin, Pin)
type Pin = (Char, Int)
3
votes
3answers
221 views
Can't load GHC.TypeLits module
Just installed the current Haskell Platform 2012.2.0.0, which says it uses base-4.5.0.0, and base-4.5.0.0 includes the GHC.TypeLits module.
However, when I try to load GHC.TypeLits, ghc can't find ...
14
votes
2answers
428 views
Using standard haskell generics libraries for typed type-isomorphisms
There are several generics libraries with numerous overlapping modules in just the Haskell Platform alone (syb, Data.Typeable, Data.Data, GHC.Generics), but I'm having trouble with a very basic ...
0
votes
2answers
239 views
/bin/sh: 1: ./respondPalindromes: not found - What does this mean?
I am able to run the code below in terminal which is in respondPalindromes.hs file but failing to test the same in emacs.
respondPalindromes = unlines . map (\xs -> if isPalindrome xs then ...
4
votes
2answers
208 views
What to do when Emacs 23 Haskell compilation (C-c C-l) goes into unending process?
Many times it happens that while I try to compile an .hs file, the Emacs 23 Haskell mode goes into an unending process and does not show any response. The only thing that happens is that the cursor ...
3
votes
1answer
95 views
How to - piping the output of one program to the input of another (capslocker) using emacs - haskell mode?
capslocker.hs has following code:
import Control.Monad
import Data.Char
main = forever $ do
putStr "Give me some input: "
l <- getLine
putStrLn $ map toUpper l
haiku.txt ...
0
votes
1answer
339 views
How to run a haskell application in emacs - haskell mode?
Code in helloworld.hs :
main = do
putStrLn "Hello, what's your name?"
name <- getLine
putStrLn ("Hey " ++ name ++ ", you rock!")
Application tested in Terminal:
...
1
vote
1answer
192 views
How to resolve issues when getting error: Not in scope
*Main> :t putStrn
<interactive>:1:1:
Not in scope: `putStrn'
Perhaps you meant one of these:
`putStr' (imported from Prelude),
`putStrLn' (imported from Prelude)
Please note that I am ...
0
votes
2answers
722 views
lacks an accompanying binding - What does it mean? How it works?
I am practising from LYAH.
phoneBook.hs file contains following code:
phoneBook :: [(String, String)]
While trying to compile the above-mentioned code I am getting following error:
*Main> ...
4
votes
1answer
356 views
Distributing a Haskell program on Homebrew
I'm writing a program in Haskell on my Mac (command line executable, not an app). I'm using GitHub to host the git repository and homepage. I made the <project>.cabal and Setup.hs files since ...
2
votes
3answers
198 views
Unable to understand coding logic / principle / convention - why 'Show a' is needed? Why 'Show Car“ or ”Show String" is not working?
Code given below compiles, ok.
data Car p q r = Car {company :: p
, model :: q
, year ::r
} deriving (Show)
tellCar :: (Show a) ...
2
votes
1answer
298 views
Ambiguous occurrence `Just'
I am an absolute beginner. Going through LYAH using emacs.
My current Set up:
Ubuntu 12.04 LTS (Use Experience - beginner)
GNU Emacs 23 (Use Experience - beginner)
able to work in haskell major ...
17
votes
1answer
224 views
hackage.haskell.org documentation convention meaning
I am currently reading http://hackage.haskell.org/packages/archive/containers/latest/doc/html/Data-Set.html#t:Set
What does following detail convey (to an absolute haskell beginner)?
Portability: ...
3
votes
2answers
275 views
Yesod: Weird error working with Lucius
Hi I'm very new to yesod and I'm trying to follow this Tutorial but when I tried to develop the app it gives me this error:
Building ministeam-0.0.0...
Handler/AuthTut.hs:81:0:
error: ...
1
vote
1answer
198 views
Error installing yesod on Haskell Platform 2012.2.0.0 on Windows XP
I trust tried to install yesod using "cabal install yesod-platform" but the
installation aborted with the following error:
cabal: Error: some packages failed to install:
authenticate-1.2.1.1 ...
0
votes
0answers
29 views
Error installing nehe-tuts on Haskell Platform 2012.2.0.0
I tried to install nehe-tuts but cabal gave this error:
[1 of 1] Compiling Control.DeepSeq ( Control\DeepSeq.hs, dist\build\Control\Dee
pSeq.o )
Control\DeepSeq.hs:56:1:
...
0
votes
1answer
302 views
Can I use haskell platform with GHC 7.4.2?
While trying to compile, Haskell Platform (2012.2.0.0) I realized I compiled the wrong GHC (I downloaded 7.4.2 instead of 7.4.1).
Are there any problems with using 7.4.2 with haskell-platform, ...
4
votes
1answer
134 views
ghc 7.4.1 not producing stub.o files
I'm running the default installation of Haskell platform on Ubuntu and when I run this example http://www.haskell.org/haskellwiki/Calling_Haskell_from_C "ghc -c -O Safe.hs" is not producing the ...
