trainings/AdvancedCppV2/Presentation/exercises/exampleProject/exampleProject.cpp

7 lines
125 B
C++

#include <string>
#include <iostream>
int main() {
const std::string str("Hello world!\n");
std::cout << str << '\n';
}