//TestStringOutput.java

public class TestStringOutput
{
    public static void main(String args[])
    {
        //You can use one println() to output lots of text, but
        //be sure to break lines properly and insert newlines in
        //the appropriate locations.
        System.out.println("\nNote that you can easily extend "
            + "a single string over more than one line,\nand use "
            + "a single \"println()\" method to output quite a "
            + "bit of text.");
    }
}

