RE: Haskell performance

2004-03-18 Thread mahogny
looking at any memory use; in haskell I can concentrate on coding this much faster algorithm. if you want a 10 times speed up, you wait some time for the hardware technology to make up. if you want a 100 times speed up, you consider your algorithms. -

RE: replacement of main

2003-12-08 Thread mahogny
On Mon, 8 Dec 2003, Simon Marlow wrote: > Date: Mon, 8 Dec 2003 12:20:42 - > From: Simon Marlow <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED], [EMAIL PROTECTED] > Subject: RE: replacement of main > > > > ok, I guess this is not something you do every day; > > I am making a language binding for t

replacement of main

2003-12-08 Thread mahogny
ok, I guess this is not something you do every day; I am making a language binding for the library Allegro which has some weird things going on. I need to make a main() in C. so I followed the manual, I export my non-main haskell entrypoint and call it from the C main which basically is copy-paste