    class Variable 
      { 
      public static void main (String args[]) 
        {
        int i;                         // Simple Type created here.
        StringBuffer sb;               // Composite Type defined here.

        i = 3;                         // Assign a value to the var.
        sb = new StringBuffer ("abc"); // Create the var object with a value.
        } 
      } 

