Tagged Questions
4
votes
9answers
391 views
In Need of the Most Simple Haskell Program
Can anyone provide me with less than five lines of code that I can save as .hs and run as a haskell program and see the magic happen? The internet is so complicated sometimes.
33
votes
4answers
887 views
Concrete example showing that monads are not closed under composition (with proof)?
It is well-known that applicative functors are closed under composition but monads are not. However, I have been having trouble finding a concrete counterexample showing that monads do not always ...
-7
votes
2answers
178 views
function :: [String] -> String example in haskell [closed]
Can anybody provide me with a simple example with signature?
somefunction :: [String] -> String
1
vote
2answers
434 views
Is non-local type inference in Haskell or OCaml really useful? [closed]
First, let us assume that local type inference is the sort of type inference found in Scala and C#. Scala local type inference is explained here: http://www.scala-lang.org/node/127
Also, let us ...
223
votes
7answers
21k views
Good Haskell source to read and learn from [closed]
What are some open source programs that use Haskell and can be considered to be good quality modern Haskell? The larger the code base, the better.
I want to learn from their source code. I feel I'm ...