#include #include "pilang.hpp" int main() { using namespace Pilang3; // Initialise std::string line; Environment env; // CLI loop while (true) { std::getline(std::cin, line); //try { Evaluation evaluation(env, line); evaluation.execute(env); //} catch (exceptions::langException& e) { // std::cout << "E: Language exception: " << &e << std::endl; //} } }