Re: Dynamic Source Loading

2004-10-26 Thread Niklas Broberg
Please look at hs-plugins: http://www.cse.unsw.edu.au/~dons/hs-plugins and the accompanying paper: http://www.cse.unsw.edu.au/~dons/hs-plugins/paper hs-plugins is already being used at Chalmers for their Haskell Server Pages project, which sounds a lot like what you're

Dynamic Source Loading

2004-10-25 Thread S. Alexander Jacobson
I am writing a web application server in Haskell. I would like to be able to modify the app on the fly. Simplyfing the app server, it would look like this: appServer appMVar reqChan state = do req - readChan reqChan app - readMVar appMVar (state',resp) - return $ app

Re: Dynamic Source Loading

2004-10-25 Thread Donald Bruce Stewart
haskell: I am writing a web application server in Haskell. I would like to be able to modify the app on the fly. Simplyfing the app server, it would look like this: appServer appMVar reqChan state = do req - readChan reqChan app - readMVar appMVar

Re: Dynamic Source Loading

2004-10-25 Thread Shae Matijs Erisson
S. Alexander Jacobson [EMAIL PROTECTED] writes: That lets you load object files. But I would really like something that loads source files instead http://www.cse.unsw.edu.au/~dons/hs-plugins/index.html hs-plugins can build and load source, and check dependencies, and lots more. Also,