Friday 29 June 2012

Creating Package Using JAVA


package society;


public class Human
{
 public static void main(String arg[])
{
             Human t=new Human();
             t.hello();            


       }


    void hello()
  {
    System.out.println("hello");
  }


}

No comments:

Post a Comment