package com.java4kids.chapter1;
/**
* Hello World, is your first program in Java language.
*
* @author jabrena
*/
public class HelloWorld {
/**
* The Java Virtual Machine starts up by loading a specified class
* and then invoking the method main in this specified class.
*/
public static void main(final String[] args) {
//Show in the output a text
System.out.println("Hello world");
}
}