8 lines
96 B
C++
8 lines
96 B
C++
#include <iostream.h>
|
|
|
|
void main( void ) {
|
|
|
|
cout << "Hello, my world!";
|
|
cout.flush();
|
|
}
|