[ Back to the overview Matrix ]

Test case : Hello World using C++

Lines used: 5
#include <iostream>

using namespace std;

int main() {
   cout << "Hello World!" << endl;  // let's make speedy happy and use endl
   return 0;
} 
Contributed by AzureIce, webmaster at pagemac.com