Write a complete main method that prints Hello, world to the screen.

LANGUAGE: JAVA

CHALLENGE:

Write a complete main method that prints Hello, world to the screen.

SOLUTION:

public static void main (String[] args){
   System.out.println("Hello, world") ;
}