Re: Date Sorting...

2002-03-14 Thread John Hughes
> Sorting is probably easiest if you use the standard sort function. I'm > still kind of interested in whether anyone has done work on which > purely-functional sorts are efficient, and particularly which ones are > efficient in GHC. I think it was Oege de Moor who compared a number of sorting

Re: Date Sorting...

2002-03-14 Thread Ralf Hinze
You can find a fairly large number of sorting routines here: http://www.informatik.uni-bonn.de/~ralf/software.html#sort Cheers, Ralf ___ Haskell-Cafe mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: Hiring Haskell programmers

2002-03-14 Thread Nicholas Nethercote
On Wed, 13 Mar 2002, Manuel M. T. Chakravarty wrote: > Depends where you are, I guess. In Sydney, it would be > easy. We are teaching Haskell to about 1500 first-year > students every year. > > I know that there are a number of schools in Germany and the > UK who teach functional programming on

Re: Hiring Haskell programmers

2002-03-14 Thread Pablo E. Martinez Lopez
> > I know that there are a number of schools in Germany and the > > UK who teach functional programming on a large scale, too. > > Not so sure about the rest of the planet. > > Melbourne University is teaching similar numbers (perhaps slightly less; > probably more than 1000) of first-year stude

(no subject)

2002-03-14 Thread 정종길
Hi!!! ^^ I am a student who study a computer programing. I want to have Haskell software to study . However, it is very hard to get the Haskell . and I hope you give me the way to get the Heskell. If you mail me to show the way to get the Heskell , I would appreciate your kindness. Thank you!

Re: (no subject)

2002-03-14 Thread Alastair David Reid
<[EMAIL PROTECTED]> writes: > I am a student who study a computer programing. I want to have > Haskell software to study . However, it is very hard to get > the Haskell . and I hope you give me the way to get the Heskell. > If you mail me to show the way to get the Heskell , I would > appreciat

Continuation Passing Style

2002-03-14 Thread Tom Bevan
I noticed that Ralf Hinze posted a CPS monad yesterday. Would someone be kind enough to post a simple example of a function that uses CPS. Thanks Tom ___ Haskell-Cafe mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell-cafe

Date Sorting Round Three

2002-03-14 Thread Michael Ruth
long set of code here, I think I figured out what you all were telling me. Compose small functions then compose bigger functions from smaller functions and so on... The problem I am having is I have an (IO String) where I need a (String) and it reports it as such: ERROR "C:\Documents and Set

RE: Date Sorting Round Three

2002-03-14 Thread Garner, Robin
Title: RE: Date Sorting Round Three The problem you are trying to come to grips with here is one of the watersheds in the learning curve that most people learning Haskell encounter, namely how to use values returned in Monads.  I could point out that you have already solved the same problem wh

Re: Continuation Passing Style

2002-03-14 Thread Ashley Yakeley
At 2002-03-14 16:10, Tom Bevan wrote: >I noticed that Ralf Hinze posted a CPS monad yesterday. He did? Anyway I have one here: Basically it's this: newtype CPS