Re: docbook tools (was ghc-4.06-1.src.rpm)

2000-03-16 Thread Greg O'Keefe
for the docbook sgml DTD. See http://www.linuxdoc.org for the latest on this. Greg O'Keefe

Re: The Haskell compiler of my dreams...

1999-11-26 Thread Greg O'Keefe
On Wed, Nov 24, 1999 at 06:29:24PM -0500, Eduardo Costa wrote: Dear list members. In my opinion, a compiler for a functional language should have the following features: [snip] 6- The code generated must be small, and use heap sparingly. I was amazed that an utterly trivial program compiled

io monad binding, coding style

1999-01-16 Thread Greg O'Keefe
main = readFile "input-file" = \ s - writeFile "output-file" (filter isAscii s) putStr "Filtering succesful\n" My question is: is there some good reason why it is set out the way it is in the report? Cheers, Greg O'Keefe