#include "HelpCommand.h" namespace commands { HelpCommand::HelpCommand(): SubCommand("help", 100) {} void HelpCommand::run(int argc, stringstream& args) { cout << "Projekt 5\n"; cout << "epr24pr5-ojanssen2 \n"; } }