pub trait ReplPrinter {
// Required methods
fn print_rib_result(&self, result: &RibResult);
fn print_rib_error(&self, error: &RibError);
fn print_bootstrap_error(&self, error: &ReplBootstrapError);
fn print_runtime_error(&self, error: &str);
}