Re: Haskell -- confirmation of subscription -- request 834452

2001-07-31 Thread Gonzalo Cobos Bergillos
confirm 834452 ___ Haskell mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell

Special 1/4 Page printing prices!!!!

2001-07-31 Thread James Horne
  Stellar Concepts and Design Can offer you:   5000 ¼ Page Flyers, full color, Free UV Lamination--$1995000 Business Cards, Full Color, Free UV Lamination--$1995000 Business Cards, 5000 Brochures, 5000 Flyers--$999   If you are interested email us @ [EMAIL PROTECTED]Or call 954.489.2250 ext

Graphical User Interface Libraries

2001-07-31 Thread Juan Ignacio Garcia Garcia
Does anybody know a GUI library which goes OK with ghc-5? I have been looking for one, but it seems that they only can be used with old versions of ghc or with hugs. Thanks in advance, J. I. García ___ Haskell mailing list [EMAIL PROTECTED] http://ww

Re: simple question

2001-07-31 Thread Tom Schrijvers
Cagdas Ozgenc wrote: > books2 :: Database2 -> Person -> [Book] > > books2 db person = head [ snd tuple | tuple <- db, fst tuple == person ] > > borrowers2 :: Database2 -> Book -> [Person] > borrowers2 db book = [ person | (person, books) <- db, book <- books ] You can't pattern match against

simple question

2001-07-31 Thread Cagdas Ozgenc
Hi, I am trying to do some exercies in my Haskell book. I couldn't get my program to work correctly. type Database2 = [ (Person,[ Book ]) ] exampleBase2 :: Database2 exampleBase2 = [ ("Alice", [ "Tintin", "Astrix" ] ), ("Anna", [ "Little Woman" ] ), ("Rory", [ "Tintin" ] ) ] books2 :: Data