pub trait InterpreterTraitObject { // Required method fn run( &self, ast: ASTNode, custom_commands: &HashMap<String, Box<dyn Command>>, ); }