Concurrent-Haskell in GHC

2003-02-03 Thread Jonathan Holt
Hi guys! I'm considering doing a server project in Haskell, using GHC, and I'm having the old dilema of trying to figure out the best way of handling multiple concurrent connections: multiplexing or multithreading. I've started looking into the docs on GHC's implementation of Concurrent-Haskell,

Haskell run-time tutorial

2002-12-14 Thread Jonathan Holt
Hi guys, Having completed a simple parser project using Haskell, I'm getting more and more hooked on functional-programming in general and Haskell in particular. And learning the language has been a real treat as well, using the tutorial with occasional peeks at the report. However, when I'm

RE: Calling Haskell from Python / C++

2002-11-13 Thread Jonathan Holt
--- Simon Peyton-Jones [EMAIL PROTECTED] wrote: | So here is what I envision: I write the main | application in Python. I write a (hopefully) small | Haskell module that: | a) Calls back to the main Python app for reading the | text to be parsed, preferably using laziness. | b) Parses the

Calling Haskell from Python / C++

2002-11-12 Thread Jonathan Holt
Hi, I've just recently learned about Haskell, and I'm impressed by the abstractions and expressiveness that it affords. I'm particularly interested in it for a small parser project that I'm planning. However, my main programming languages are Python and C++, and for various reasons switching