#include "shell.hpp" // trivial: create a shell instance and run it! int main (int argc, char* argv[]) { try { shell sh; sh.run (); } catch ( std::exception const & e ) { std::cerr << "exception caught: " << e.what () << std::endl; } catch (...) { std::cerr << "unexpected exception caught" << std::endl; } return 0; }