
--- Christopher Milton
--- David Sankel
wrote: I was wondering if there is any project that aims to interpret haskell within haskell.
http://www.haskell.org/implementations.html <quote type="partial"> GHC, the Glasgow Haskell Compiler The Glasgow Haskell compiler is a full implementation of Haskell. It is itself written in Haskell and is designed to act as a substrate for the research work of others. The source code is freely available. It produces fast code. </quote> The GHC interpreter is ghci. (It's not as slow anymore.) http://www.haskell.org/ghc/
The other Haskell interpreters also load and interpret users' Haskell source code, as well.
I was referring to a haskell interpreter to be used within haskell code. For instance: main = do user_configuration <- parseHaskell title <- resolveFunction user_configuration "title" :: String putStr title David J. Sankel