Skip to content

Instantly share code, notes, and snippets.

@ReticentIris
Created July 25, 2011 03:37
Show Gist options
  • Save ReticentIris/1103521 to your computer and use it in GitHub Desktop.
Save ReticentIris/1103521 to your computer and use it in GitHub Desktop.
Noob Greg = new Noob(){
boolean noob;
boolean inchaos;
{
this.noob = true;
this.inchaos = false;
}
Noob(){
System.out.println("Play In Chaos!!!!!");
}
public void rant(){
System.out.println(this.noob && !this.inchaos ? "I'm a noob." : "I'm not a noob.");
}
}
Greg.rant();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment