cpp-devshell/main.cpp

11 lines
152 B
C++
Executable File

#include <iostream>
#include <string>
using namespace std;
int main() {
string bla = "hello world";
cout << bla << std::endl;
return 0;
}