Created
July 10, 2013 01:53
-
-
Save EdgeCaseBerg/5962881 to your computer and use it in GitHub Desktop.
A tribute to Dennis Ritchie
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
| #include <stdio.h> | |
| char * chorus = "For he's a jolly good fellow"; | |
| char * ending = "Which no body can deny"; | |
| main(){ | |
| int i; | |
| for(i=0; i < 3; ++i){ | |
| printf("%s\n",chorus); | |
| sleep(1); | |
| } | |
| printf("%s\n", ending); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment