Hello World

This is an hello world done in Java. Every beginner does it at some stage. It is the most simplest program that can be written. The program prints out Hello World in your IDE editor output window.

Source Code

  1. public class HelloWorld
  2. {
  3. public void static main(String[] args)
  4. {
  5. System.out.println("Hello World");
  6. }
  7. }

Share These Free Scripts

My Fancy Artistic Separator

Categories