Files
Examples/C++/hashtable/main.cpp
plane000 c18d9afaa5 react
2018-08-09 21:14:10 +01:00

13 lines
157 B
C++

#include <iostream>
using namespace std;
int main() {
cout << "HELLO, WORLD \n";
string x;
cin >> x;
cout << &x;
endl;
return 0;
}