/*****************************************************************
** DemoStringRedundancy
**
**
** (c) Scott MacKenzie, 2000                             
******************************************************************/
public class DemoStringRedundancy
{
   public static void main(String[] args) 
   {
      // change the value of an int variable
      int x = 5;
      x = 6;
      System.out.println(x);

      // change the value of a String object
      String greeting = "hello";
      greeting = "bonjour";
      System.out.println(greeting);
   }
}  

