Last active
December 19, 2015 15:09
-
-
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"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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