10 lines
130 B
C++
10 lines
130 B
C++
|
#include <iostream.h>
|
||
|
|
||
|
void main( void ) {
|
||
|
|
||
|
ostream test ( 0 );
|
||
|
test = cout;
|
||
|
test << "Hello my world!" << endl;
|
||
|
}
|
||
|
|