From 658edb1dbf7403f9fb6e49a4b4a95677bfa4eb7a Mon Sep 17 00:00:00 2001 From: Zebedee-balistique <116427847+Zebedee-balistique@users.noreply.github.com> Date: Mon, 11 Aug 2025 18:02:06 +0200 Subject: [PATCH] Update main.cpp --- Pokemon/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Pokemon/main.cpp b/Pokemon/main.cpp index c2bc7bfc..7803d4ea 100644 --- a/Pokemon/main.cpp +++ b/Pokemon/main.cpp @@ -2,5 +2,10 @@ int main() { + std::string player_name; + + std::cout << "Enter your name" << '\n'; + std::cin >> player_name; + std::cout << "Great Start " << player_name << ", looks like you have understood the main() function properly now!"; return 0; }