|
Subject: ANNOUNCE: Phooey -- a Functional UI library for Haskell Newsgroups: gmane.comp.lang.haskell.general Date: 2006-12-12 07:17:46 GMT (1 year, 49 weeks, 1 day, 14 hours and 43 minutes ago)
Announcing Phooey, a functional UI library for Haskell. Phooey is structured as an arrow, and this example uses arrow notation. The code: ui1 :: UI () () ui1 = title "Shopping List" $ proc () -> do a <- title "apples" (islider 3) -< (0,10) b <- title "bananas" (islider 7) -< (0,10) title "total" showDisplay -< a+b I am working on a paper about Phooey. For now, please see the Haddock documentation (which includes more examples), and try the code via Directions for building are in the README file. Distribution tarballs are here. Comments and collaboration are very welcome! Cheers, - Conal P.S. I'm very grateful for Don Stewart's recent pointers on how to create & release Haskell projects. _______________________________________________ Haskell mailing list Haskell <at> haskell.org http://www.haskell.org/mailman/listinfo/haskell |
|
|