Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Pokemon/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#include <iostream>
namespace std;

int main() {

string player_name;
cout << "Enter your name:";
cin << player_name;
cout << "Great start " << player_name << ", looks like you have understood the main() function properly now!” << endl;
return 0;
}