import java.*;


class TestOrc  {


   public static void main (String[] args)  {

      System.out.println("Orc program running");

      Orc joe;       			// object declaration
      joe = new Orc();			// object creation

      joe.printInfo("Baba");

      joe.getName();

      Orc temp = joe.getFriend();
      temp.printInfo("Baba");


      // String temp = joe.getName();

      // System.out.println("temp = "  + temp);

/*
      joe.setName("Joe Dummy");


      Orc.doSomething();

      joe.doSomething();
      */



   }


}



