School-Coding-Cpp/cicli_operatori/hello world.cpp

6 lines
103 B
C++

#include <iostream>
using namespace std;
int main(void) {
cout << "Hello world!" << endl;
return 0;
}