November 05, 2010

Hello World!

#include <iostream>

int main(int argc, const char *argv[]) {
    std::cout<<"Hello World!";
    return 0;
}

Just the beginning.