/*********************************************************************
*   Lab 03-09, experimenting with `+'
*
* @author
* @version
**********************************************************************/
public class Concat
{
   /***************************************************************
   * Main method for a program that experiments with the `+' operator.
   * 
   * @param args unused in this program  
   ****************************************************************/
   public static void main (String[] args)
   {
      String sample;
      sample = "Wow\\neat\n";
      System.out.print (sample.length() + ": " + sample);
      System.out.println ("This is a long string that is the "
         + "concatenation of two shorter strings.");
      System.out.println ("The first computer was invented about" + 55
         + "years ago.");
      System.out.println ("8 plus 5 is " + 8 + 5);
      System.out.println ("8 plus 5 is " + (8 + 5));
      System.out.println (8 + 5 + " equals 8 plus 5.");
   }
}
