Re: [Haskell-cafe] IO platform for testing

2005-07-17 Thread Frank-Andre Riess
Hi there, There are some other, minor problems -- for indexing you need ss!!0, the name m01_mod, and you may need an 'import' to make getArgs visible. yup, and you have to get rid of the two dos in the application of putStrLn. Regards, Frank-Andre Riess

[Haskell-cafe] Re: haskell parser for java bytecode?

2005-07-05 Thread Frank-Andre Riess
was some discussion about having Haskell actually -target- the JVM (I think, it was on the Glasgow Haskell Users list). That might as well be an interesting thing to do. Best regards, Frank-Andre Riess ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http

Re: [Haskell-cafe] Why distinct tyvars in instance declarations?

2005-06-27 Thread Frank-Andre Riess
to require a type constructor that is yet to parameterize over three more types (e.g. StateT). Greets, Frank-Andre Riess ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] A reference manual for the Haskell monad functions

2005-06-09 Thread Frank-Andre Riess
L.S., I have written a reference manual for the most common Haskell monad functions, in the style of "A Tour of the Haskell Prelude". It can be found at: http://members.chello.nl/hjgtuyl/tourdemonad.html Known bug: Not all keywords in the "See also"

[Haskell-cafe] Usage of | in classes

2005-06-07 Thread Frank-Andre Riess
Hi, Gracjan's question led me to another question: class Monad m = Ref m r | m - r where newRef :: a - m (r a) readRef :: r a - m a writeRef :: r a - a - m () What's the meaning of the bar and the function type in this declaration. I've seen