diff --git a/Initiation.cpp b/Initiation.cpp new file mode 100644 index 0000000..df1d787 --- /dev/null +++ b/Initiation.cpp @@ -0,0 +1,18 @@ +#include +#include + +using namespace std; + + +int main() { + + cout << "Welcome buddy are you ready to play this game?" << endl; + cout << "I'm so sorry i had to capture you, hehe" << endl; + cout << "But dont worry you still have a chance to survive" << endl; + cout << "First of what's your name?" << endl; + + string user_name; + getline(cin, user_name); + cout << "Well, well well nice name. Hello, " << user_name << "." << endl; + +}