print hello world in java.

class Hello
{
   public static void main(String args[])
  {
    System.out.print("hello world");
  }    
}

■》Output->
 
      hello world

Comments

Popular posts from this blog

Introduction of java Programming language.

Stack data structure.