//============================================================================ // Name : AnotherWorld.cpp // Author : // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include #include using namespace std; int main() { // start main printf("hello\n"); cout << "!!!Hello World!!!" << endl; return 100; } // end main