10 lines
82 B
C++
10 lines
82 B
C++
|
#include <string>
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
std::string x = "Hello Upstream";
|
||
|
|
||
|
return 0;
|
||
|
}
|