Re: [Haskell-cafe] Re: Hot-Swap with Haskell

2010-07-17 Thread wren ng thornton
Brandon S Allbery KF8NH wrote: On 7/16/10 05:21 , Andy Stewart wrote: IMO, haskell interpreter is perfect solution for samll script job. But i'm afraid haskell interpreter is slow for *large code*, i don't know, i haven't try this way... Hugs? Or you can try implementing (or finding) a SASL

Re: [Haskell-cafe] Re: Hot-Swap with Haskell

2010-07-16 Thread Martin Hilbig
hi, if been thinking about an haskell interpreter to, because of erlang's otp. its syntax is a mess, but its scalability is win. since erlang runs in its vm (interpreted) is there a need for a real haskell interpreter, or can there be a compiled haskell/otp with hotswapping, scaling and

[Haskell-cafe] Re: Hot-Swap with Haskell

2010-07-16 Thread Andy Stewart
Martin Hilbig mar...@mhilbig.de writes: hi, if been thinking about an haskell interpreter to, because of erlang's otp. its syntax is a mess, but its scalability is win. since erlang runs in its vm (interpreted) is there a need for a real haskell interpreter, or can there be a compiled

Re: [Haskell-cafe] Re: Hot-Swap with Haskell

2010-07-16 Thread Brandon S Allbery KF8NH
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 7/16/10 05:21 , Andy Stewart wrote: IMO, haskell interpreter is perfect solution for samll script job. But i'm afraid haskell interpreter is slow for *large code*, i don't know, i haven't try this way... Hugs? - -- brandon s. allbery

[Haskell-cafe] Re: Hot-Swap with Haskell

2010-07-15 Thread Andy Stewart
Don Stewart d...@galois.com writes: lazycat.manatee: Hi all, I'm research to build a hot-swap Haskell program to developing itself in Runtime, like Emacs. Essentially, Yi/Xmonad/dyre solution is replace currently executing technology: re-compile new code with new binary entry