// Short program that demonstrates use of a main method and println commands // with string constants and escape sequences. public class Hello { public static void main(String[] args) { System.out.println("Hello world!"); System.out.println("This is the second line"); System.out.println("\\\\\\"); System.out.println("This is the \"fourth\" line"); } }