RE: Re[2]: [Haskell-cafe] Why Haskell?

2006-07-26 Thread Simon Peyton-Jones
| Cc: haskell-cafe@haskell.org | Subject: Re: Re[2]: [Haskell-cafe] Why Haskell? | | Hi, | | > sequence [] = return [] | > sequence (action:actions) = do x <- action | >xs <- sequence actions | >return (x:xs) | > | &

Re: Re[2]: [Haskell-cafe] Why Haskell?

2006-07-23 Thread Pepe Iborra
Bulat, now that Krasimir has resumed work on Visual Haskell, I have planned to pursue an integration of the ghc-api debugger with Visual Haskell as soon as possible. But as we get closer to having dynamic breakpoints working 100%, the plain ghci debugging support starts to look as a fairly nice a

Re: Re[2]: [Haskell-cafe] Why Haskell?

2006-07-23 Thread Neil Mitchell
Hi, sequence [] = return [] sequence (action:actions) = do x <- action xs <- sequence actions return (x:xs) sequence_ [] = return () sequence_ (action:actions) = do action sequence_ actions So, by ap