// This is a "comment" and will be ignored by Java. // Comments are used to write notes about the program public class Hello { public static void main(String[] args) { System.out.println("Hello, World!"); System.out.println(); System.out.println("This is a third line of text"); System.out.println("Quotes must be printed using an \"escape sequence\""); System.out.println("And backslashes \\ too"); } }