Re: [Haskell] Re: [Haskell-cafe] ANNOUNCE: Salsa: A .NET Bridge for Haskell

2008-10-10 Thread Niklas Broberg
> This could be a game changer. > > Great work Andrew!! Totally agreed, on both accounts. Really interesting to see. > -- Don What, no Arch Linux port? :-) Cheers, /Niklas ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/

[Haskell] Re: [Haskell-cafe] ANNOUNCE: Salsa: A .NET Bridge for Haskell

2008-10-10 Thread Don Stewart
This could be a game changer. Great work Andrew!! -- Don andrew.appleyard: > I'd like to announce the first release of Salsa, an experimental Haskell > library that allows Haskell programs to access .NET libraries. > > Here's a taste: > > > type Hello.hs > import Foreign.Salsa > import B

[Haskell] Re: [Haskell-cafe] ANNOUNCE: Salsa: A .NET Bridge for Haskell

2008-10-10 Thread Alfonso Acosta
Great! Are there any chances of getting support for non-Win32 platforms with Mono? On Fri, Oct 10, 2008 at 2:12 PM, Andrew Appleyard <[EMAIL PROTECTED]> wrote: > I'd like to announce the first release of Salsa, an experimental Haskell > library that allows Haskell programs to access .NET libraries

[Haskell] ANNOUNCE: ListZipper-1.1.0.0

2008-10-10 Thread Ryan Ingram
I was surprised to find there was no simple zipper for [] on hackage, so I made one: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ListZipper-1.1.0.0 (1.0.0.0 had a dumb bug where I switched right and left!) Example in ghci: Prelude Data.List.Zipper> let z = fromList [1,2,3] Pre