[Haskell] School of Expression pages missing from haskell.org

2011-01-10 Thread Julian Gilbey
Does anyone know what has happened to the Haskell School of Expression (SOE) webpages? The link from books for learning Haskell now gives a 404 Not Found error. Thanks! Julian ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mail

Re: [Haskell] School of Expression pages missing from haskell.org

2011-01-11 Thread Julian Gilbey
On Tue, Jan 11, 2011 at 09:26:51AM -0500, Hudak, Paul wrote: > You can find the SOE webpage here: > > http://plucky.cs.yale.edu/soe/ > > I also updated the links from http://www.haskell.org/haskellwiki/Books to > point to the right place. Please let me know if you see any other problems. Thank

[Haskell] Literate Haskell editing with Emacs and MMM: the $ operator

2011-01-25 Thread Julian Gilbey
I've been editing literate (LaTeX-based) Haskell code using Emacs and MMM-mode, using the instructions posted in http://www.haskell.org/pipermail/haskell/2006-April/017855.html There's one annoyance, however: the $ operator in Haskell code ends up being interpreted as the beginning of math mode, c

Re: [Haskell] Literate Haskell editing with Emacs and MMM: the $ operator

2011-01-30 Thread Julian Gilbey
On Wed, Jan 26, 2011 at 06:27:31AM +1000, Ivan Lazar Miljenovic wrote: > On 26 January 2011 06:07, Julian Gilbey wrote: > > I've been editing literate (LaTeX-based) Haskell code using Emacs and > > MMM-mode, using the instructions posted in > > http://www.haskell.org/pi

Re: [Haskell] a quick question

2011-02-02 Thread Julian Gilbey
On Wed, Feb 02, 2011 at 10:01:08PM -0500, Ramy Abdel-Azim wrote: > No need to apologize. Not dumb of you. The mandatory else is unusual. I > don't personally know of any other language that requires an else for every > if. Indeed. Haskell's if ... then ... else ... is akin to C's ... ? ... : ...

Re: [Haskell] Types of when and unless in Control.Monad

2012-04-22 Thread Julian Gilbey
On Sat, Apr 21, 2012 at 08:28:27PM -0500, Strake wrote: > On 21/04/2012, Andreas Abel wrote: > > to avoid silly "return ()" statements like in > > > >when cond $ do > > monadicComputationWhoseResultIWantToDiscard > > return () > > (when cond ∘ void) monadicComputationWhoseResultIWan