#include "echo_command.h" #include void EchoCommand::execute(const std::string& args) { std::cout << args << std::endl; } std::string EchoCommand::type() { return "builtin"; } std::string EchoCommand::name() { return "echo"; }