7 lines
125 B
C++
7 lines
125 B
C++
#include <string>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
const std::string str("Hello world!\n");
|
|
std::cout << str << '\n';
|
|
}
|