Hello World

It wouldn’t be a programming blog if the test post didn’t say “Hello World”.

#include <iostream> 
int main(int argc, char** argv) 
{ 
   std::cout << "Hello World!" << std::endl; 
   return 0; 
}