This is due after the lab discussion of pine.
// A simple file to say hello to the world
//
// Author: Dan Bennett
// Submitted by: __FILL IN YOUR NAME HERE __
// Class: CSCI 130
// Fall 2001
// Homework 3
//
#include <iostream>
main ( ) {
cout << "Hello World " << endl;
}