Hello Copilot

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
kieferrm
2025-06-27 11:35:20 +02:00
co-authored by copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
commit 333d9a4053
2641 changed files with 899564 additions and 0 deletions
@@ -0,0 +1,16 @@
#include <iostream>
#include <string>
int main()
{
std::string name = getName();
std::cout << "Hello, " << name << "!" << std::endl;
}
std::string getName()
{
std::string name;
std::cout << "Enter your name: ";
std::cin >> name;
return name;
}