hello world
public class Example { public static void main(String[] args) { // System.out is an object representing the screen // println is one of the methods offered by screen System.out.println("Hello World!"); } }