Tagged Questions

0
votes
2answers
29 views

Pros And Cons Of Haskell

Hello, I've learned much languages, but now I want to choose one, but the language that I most liked was Haskell, it is like a interpreted language, but is a compiled. Then I want …
0
votes
2answers
31 views

Haskell compiler error: not in scope

I am trying to learn haskell by writing a simple file copy util: main = do putStr "Source: " srcPath <- getLine putStr "Destination: " destP …
2
votes
1answer
39 views

Generating a list of lists of Int with QuickCheck

I'm working through Real World Haskell one of the exercises of chapter 4 is to implement an foldr based version of concat. I thought this would be a great candidate for testing wit …
9
votes
7answers
187 views

The practical Haskell tutorial for a programmer coming from the imperative universe

What would be the most practical online tutorial(s) for quickly getting up to speed with Haskell? I have a decent amount of programming experience with PHP, Java ja Javascript, so …
4
votes
5answers
128 views

Inheritence to extend a data structure in Haskell

A C++ programmer trying to learn Haskell here. Please excuse this probably easy question. I want to translate a program that represents 3D shapes. In C++ I have something like: …
5
votes
3answers
128 views

Anyone ever flip (<$>)

I found defining the following (%) = flip fmap I can write code like the following: readFile "/etc/passwd" % lines % filter (not . null) to me it makes more sense then the a …
2
votes
4answers
98 views

A Haskell function of type: IO String-> String

I wrote a bunch of code in Haskell to create an index of a text. The top function looks like this: index :: String -> [(String, [Integer])] index a = [...] Now I want to give …
0
votes
3answers
43 views

Haskell Parsec compile error

I've installed Haskell via the pre built installer v6.8.2. When trying to compile this sample file with GHC module Main where import Text.ParserCombinators.Parsec import System.E …
4
votes
4answers
106 views

Haskell IO Testing

I've been trying to figure out if there is already an accepted method for testing file io operations in Haskell, but I have yet to find any information that is useful for what I am …
0
votes
3answers
89 views

How to use fromInteger in Haskell?

One way to calculate 2^8 in haskell is by writing product(replicate 8 2) When trying to create a function for this, defined as follows... power1 :: Integer → Integer → Integer …
2
votes
9answers
188 views

Significant Whitespace in C# like Python or Haskell? [closed]

I'm wondering if any other C# developers would find it an improvement to have a complier directive for CSC to make whitespace significant ala Haskell or Python where the kinds of w …
1
vote
1answer
87 views

In Haskell, how do I recursively manipulate a tuple and preappend a character to the first element in the tuple?

The type of this function is function :: Num a => ([Char],a) -> ([Char],a) My input for this function would be something like function (".'*",0) and the function finds the f …
5
votes
6answers
291 views

Some questions about monads in Haskell

I'm learning about monads and have a few questions. This is where I am right now. Please correct me where I am wrong. The >>= symbol is an infix operator. Infix operators …
14
votes
19answers
2k views

What is your favourite cleverly written functional code?

What are your favourite short, mind-blowing snippets in functional languages? My two favourite ones are (Haskell): powerset = filterM (const [True, False]) foldl f v xs = foldr …
2
votes
1answer
79 views

What is MACID ?

I've recently found the HAppS and Happstack projects, and the latter notes that one of its missions is to "leverage use of MACID". What exactly is MACID ?

1 2 3 4 5 32 next
15 30 50 per page