Skip to content

Instantly share code, notes, and snippets.

@auxiliary-character
Last active May 20, 2017 13:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save auxiliary-character/297167013542fb3586b7 to your computer and use it in GitHub Desktop.
Save auxiliary-character/297167013542fb3586b7 to your computer and use it in GitHub Desktop.
#include "math.h"
//based on https://www.youtube.com/watch?v=GtQdIYUtAHg
//used for my alarm clock.
//warning: loud.
int main(t) {
for(;;t++){
putchar(t*t>>8);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment