Hello, World!

Note:

This code was written during a crunch period and isn't perfect. There will be some errant spacing, some files will be using namespace std, etc. But it's all still usable and can be a handy guideline if you're learning Data Structures.


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