Life of Pi

public String getLife(float number){
   return "a fearsome Bengal tiger.";
}

public static void main(){
   System.out.println(this.getLife(Math.PI));
}
Vote up this code0