Hello World!
Let's start where all programmers start when trying to pick up a new language. Hello World! Java makes this easy:
Very easy!
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello Joe!");
}
}
Very easy!