cpp-devshell/main.cpp

11 lines
152 B
C++
Raw Normal View History

2025-12-08 12:14:23 +01:00
#include <iostream>
#include <string>
using namespace std;
int main() {
string bla = "hello world";
cout << bla << std::endl;
return 0;
}