> 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/
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
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
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