Re: [Haskell] Haskell Interfacing With VB

2005-09-26 Thread shelarcy
On Mon, 26 Sep 2005 04:44:37 +0900, Craig Middlemast <[EMAIL PROTECTED]> wrote: I computing student entering my final year at Northumbria University, Newcastle upon Tyne. I am doing some research for my final year project which is to design and build a Syntax Directed Editor for a high level comp

Re: [Haskell] IO functions reference?

2005-09-26 Thread Cale Gibbard
On 26/09/05, Creighton Hogg <[EMAIL PROTECTED]> wrote: > Hi, > I've been trying to write some code in Haskell and have been > running into trouble not knowing the already built-in IO > functions. For example, is there a function that will take > a line and turn it into a list? > Is there a referen

[Haskell] Re: IO functions reference?

2005-09-26 Thread Stephane Bortzmeyer
On Mon, Sep 26, 2005 at 10:19:09AM -0500, Creighton Hogg <[EMAIL PROTECTED]> wrote a message of 13 lines which said: > Is there a reference where one can lookup all these things? I use: http://www.zvon.org/other/haskell/Outputglobal/index.html ___

[Haskell] IO functions reference?

2005-09-26 Thread Creighton Hogg
Hi, I've been trying to write some code in Haskell and have been running into trouble not knowing the already built-in IO functions. For example, is there a function that will take a line and turn it into a list? Is there a reference where one can lookup all these things? Thanks, Creighton Hog

Re: [Haskell] Haskell Interfacing With VB

2005-09-26 Thread Cale Gibbard
On 25/09/05, Craig Middlemast <[EMAIL PROTECTED]> wrote: > Hello, > > I computing student entering my final year at Northumbria University, > Newcastle upon Tyne. I am doing some research for my final year project > which is to design and build a Syntax Directed Editor for a high level > computing

[Haskell] ICTCS 2005: Call for participation

2005-09-26 Thread g. michele pinna
Ninth Italian Conference on Theoretical Computer Science (ICTCS'05) Certosa di Pontignano (Siena), Italy October 12 - 14, 2005 http://ictcs05.dsmi.unisi.it Call for Partecipation The Ninth Italian Conference on Theoretical Computer Science w

[Haskell] Haskell Interfacing With VB

2005-09-26 Thread Craig Middlemast
Hello,   I computing student entering my final year at Northumbria University, Newcastle upon Tyne. I am doing some research for my final year project which is to design and build a Syntax Directed Editor for a high level computing language.   The problem which I have is that I would li

Re: [Haskell] Paper: The essence of dataflow programming

2005-09-26 Thread Tarmo Uustalu
Dear Dave, Thanks for the nice propaganda! A few comments regarding the points you made in your message. Ineffeciency of fibo-like programs: Your observations are true. But this is a comonadic interpreter analogous to the cbv monadic interpreter. One can also define an analogue to the cbn mon

[Haskell] Making shared libraries with Haskell

2005-09-26 Thread Joel Reymont
Folks, Is the procedure of creating shared libraries with Haskell and loading them from C described somewhere? Is this even possible? Thanks, Joel -- http://wagerlabs.com/ ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org

Re: [Haskell] Paper: The essence of dataflow programming

2005-09-26 Thread Einar Karttunen
On 26.09 01:01, David Menendez wrote: > We'll also define the injection combinator from Kieburtz's paper[1]: > > > (.>>) :: Functor d => d a -> b -> d b > > d .>> a = fmap (const a) d We add some nice combinators: (>>-) :: Comonad co => (co a -> co b) -> (co b -> co c) -> co a -> co c a >>- b =