// Short program that demonstrates use of a main method and println command // with string constants and escape sequences. public class Hello { public static void main(String[] args) { System.out.println("Hello world!"); System.out.println(); System.out.println("three backslashes: \\\\\\"); System.out.println("let's \"quote\" something"); } }