// hello.cpp // Ohjelma tulostaa tekstin Hello world! #include int main(void) { cout << "Hello world!" << endl; return 0; }