Skip to content

Instantly share code, notes, and snippets.

@yesyo
Created August 14, 2011 10:47
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 yesyo/1144788 to your computer and use it in GitHub Desktop.
Save yesyo/1144788 to your computer and use it in GitHub Desktop.
First Anniversary
class TheWorld {
// is the world going to end?
public static boolean theEndOfTheWorld = false;
}
public class MyLove {
// my dear
public static final String love = "icygirl";
public static void main(String[] args) {
while(!TheWorld.theEndOfTheWorld){
// iterate forever
System.out.print("I love " + MyLove.love + ".\t");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment