Print hello world program

10 0 0
                                        

public class Main {
  public static void main(String[] args)
{
    System.out.println("Hello World");
  }
}
Output
Hello World

Java Programming Language Where stories live. Discover now