11 lines
152 B
C++
11 lines
152 B
C++
|
|
#include <iostream>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
using namespace std;
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
string bla = "hello world";
|
||
|
|
cout << bla << std::endl;
|
||
|
|
return 0;
|
||
|
|
}
|