diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..1918874 --- /dev/null +++ b/main.cpp @@ -0,0 +1,29 @@ +#include <iostream> +#include "ast.h" +#include "environment.h" +#include "error.h" +#include "prelude.h" + +using namespace std; + + +int main(){ + Environment env; + env.load(prelude); + // cerr<<"Global env = "<<&env<<endl; + + string line; + cout<<"> "; + while(getline(cin,line)){ + try { + AST parsed(line); + cerr<<"Parsed: "<<parsed<<endl; + const AST &res=env.run(parsed); + cout<<res<<endl; + } catch(runtime_error e){ + cerr<<"\x1B[1mError: "<<e.what()<<"\x1B[0m"<<endl; + } + cout<<"> "; + } + return 0; +} |