[Haskell-cafe] ANNOUNCE: Derangement version 0.1.0

2007-02-19 Thread dgriffi3
algorithm. The source and its darcs repository is available at http://www.acm.uiuc.edu/~dgriffi3/projects/derangement/ Of course questions, comments and patches are welcome. -- Dennis Griffith, [EMAIL PROTECTED] Treasurer ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] Become a GHC build slave!

2007-02-02 Thread dgriffi3
On Fri, Feb 02, 2007 at 04:37:41PM +, Simon Marlow wrote: Thanks largely to Ian Lynagh, GHC now has a BuildBot infrastructure to automate nightly builds on multiple platforms. This replaces the old set of shell scripts that we used to run nightly builds; now adding new clients to the setup

Re: [Haskell-cafe] Showing the 1 element tuple

2006-12-19 Thread dgriffi3
On Tue, Dec 19, 2006 at 10:41:56PM +, Neil Mitchell wrote: Hi, A weird question, what does the 1 element tuple look like? () -- 0 element tuple (,) a b -- 2 element tuple (,,) a b c -- 3 element tuple () a - meaningless (a) - a in brackets GHC has the 1 element unboxed tuple, (# a #), and