Tagged Questions

6
votes
2answers
152 views

A Haskell interpreter /w type definitions

Is there a Haskell interpreter that accepts type definitions or preferably all kinds of statements? I've already tried ghci and hugs and none of these does that. Is there some particular reason that ...
6
votes
4answers
857 views

Differences Between Hugs, Yhc and GHCi

There are differences between Hugs, Yhc and GHCi? If there are differences, What are they?
5
votes
2answers
171 views

Writing Haskell interpreter in C++ (using ghc or hugs as library)

I'm writing a C++ application that needs to interpret and evaluate haskell code. This code isn't known at compile time but given by the user. Is there a way to use a haskell compiler/interpreter (like ...