python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Monadic compose with discarding (>>) flipped
The definition of (>>) function is following:
(>>) :: Monad m => m a -> m b -> m b
But I would like to achieve this function flipped like following:
I have a function tabulate :: ...

xbalaj
Votes: 0
Answers: 1
How does \n work in Char lists in haskell
right now I have a String equal to "...\n...\n...". In my code I want to write this as a list (like ['a','b','c']), but how would this work with the \n? I checked in ghci if string == ['.','...
Amber
Votes: 0
Answers: 1
Can't get the length of a list in Haskell
I am new to Haskell and I am trying to get the length of a list created by a function. I am getting this error and I don't understand what it means:
* Couldn't match expected type `t1 -> a0' wi...
MahatMaghandi
Votes: 0
Answers: 1
stack: download dependencies to repo to transfer on other machine
I would like prepare a haskell project repository, currently using stack, such that it includes already all dependencies and stack can run without internet connection.
Background: The project director...
Marius Melzer
Votes: 0
Answers: 0