- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhelp.cpp
More file actions
Latest commit
12 lines (11 loc) · 536 Bytes
/
Copy pathhelp.cpp
File metadata and controls
12 lines (11 loc) · 536 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
#include"help.h"
#include<iostream>
voidhelp_generic() {
std::cout << "help - Shows this, what else do I have to say?\n";
std::cout << "version - Shows the NShell build number.\n";
std::cout << "c.version - Same as version, but in a single line.\n";
std::cout << "contrib - Lists all contributors of NShell.\n";
std::cout << "license - Shows the license of NShell.\n";
std::cout << "calc - A basic calculator included in the NShell.\n";
std::cout << "exit - Closes the NShell.\n";
}