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