lasd/teoria/esempi_professore/examples/minimal/main.cpp

10 lines
105 B
C++
Raw Normal View History

2021-03-21 00:41:19 +01:00
#include <iostream>
using namespace std;
int main() {
cout << "Hello world!" << endl;
return 0;
}