beep boop

This commit is contained in:
left_adjoint 2024-01-31 10:26:16 -08:00
parent f0e7b33b02
commit 170cd28bfd
1 changed files with 11 additions and 0 deletions

11
getlinetest.cpp Normal file
View File

@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int main(){
string str;
cout << "Enter literally anything: " << endl;
getline(cin, str);
cout << "Here's what you entered: " << str << endl;
return 0;
}