From 5a137354b9f286660d38764f665d15445a5602f1 Mon Sep 17 00:00:00 2001 From: "Annakeziah Bempah (bempaha)" Date: Fri, 20 Mar 2020 17:39:50 +0000 Subject: [PATCH] Create Initiation.cpp --- Initiation.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Initiation.cpp 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; + +}