Skip to content

Instantly share code, notes, and snippets.

@Chandler
Last active December 19, 2015 15:09
Show Gist options
  • Save Chandler/5974180 to your computer and use it in GitHub Desktop.
Save Chandler/5974180 to your computer and use it in GitHub Desktop.
The actual very first program I ever wrote, my first week of college. CS112 "Computer Science for non majors"
/* hello.cpp
The Standard "hello world" program
Chandler Abraham August 25th, 2007
*/
# include <iostream>
using namespace std;
void showprogramHeader ();
int main ()
{
showprogramHeader ();
cout << "Hello World" << endl;
return 0;
}
void showprogramHeader()
{
cout<< "Chandler Abraham" <<endl;
cout<<"August 31, 2007"<< endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment