Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jvns
Created September 19, 2014 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jvns/a5c1ac3c141a6a6e782f to your computer and use it in GitHub Desktop.
Save jvns/a5c1ac3c141a6a6e782f to your computer and use it in GitHub Desktop.
#include <unistd.h>
#include <stdio.h>
int main() {
while(1) {
printf(":) ");
fflush(stdout);
sleep(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment