Skip to content
Permalink
Browse files
Create Initiation.cpp
  • Loading branch information
bempaha committed Mar 20, 2020
1 parent 81e191d commit 5a137354b9f286660d38764f665d15445a5602f1
Showing 1 changed file with 18 additions and 0 deletions.
@@ -0,0 +1,18 @@
#include<iostream>
#include<string>

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;

}

0 comments on commit 5a13735

Please sign in to comment.