Tuesday, August 2, 2011

Quotes in Java - We Are All #Anonymous

 /*
  *We are Fathers.
  *We are Mothers.
  *We are Sisters.
  *We are Brothers.
  *We are Aunts.
  *We are Uncles.
  *It's time to fight back.
  */

class Anonymous extends People{

           String share =  "http://anonops.blogspot.com/";

          // method that will prevail

          private void fightBack(){
                    System.out.println("Enough!");
          }
         
          // method that will inspire

          String shareThisInfo(){
                    return share;  
          }

          public static void main(String[] a){
                    String knowledge = "power";
                    boolean power = true;
                    if(power)
                             fightBack();
                    else {

                             try{
                                    Thread.sleep((int)Double.POSITIVE_INFINITY);
                             }catch(InterruptedException e)
                             {System.out.println("R.I.P.");}
                              finally {shareThisInfo();}
                   }
          }
}




We are Anonymous.
We are Legion.
We do not forgive.
We do not forget.
Expect us

No comments:

Post a Comment