Skip to content

Instantly share code, notes, and snippets.

@EdgeCaseBerg
Created July 10, 2013 01:53
Show Gist options
  • Select an option

  • Save EdgeCaseBerg/5962881 to your computer and use it in GitHub Desktop.

Select an option

Save EdgeCaseBerg/5962881 to your computer and use it in GitHub Desktop.
A tribute to Dennis Ritchie
#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