Skip to content

Instantly share code, notes, and snippets.

@eglinetwork
Created February 23, 2011 07:42
Show Gist options
  • Save eglinetwork/840144 to your computer and use it in GitHub Desktop.
Save eglinetwork/840144 to your computer and use it in GitHub Desktop.
Eternal Love
// love is true at the beginning
var love = true;
// default break up after four seconds
var breakup = function(){
love = false;
};
setTimeout ( breakup, 4000 );
while(love){
// spread love with ♥
}
//
// How long will this love last?
//
// a) for four seconds
// b) forever
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment