// Demonstrate for-each loop as well as array population with declaration
class DaysOfWeekForEachDemo
{
  public static void main(String[] args)
    {
      String[] daysOfWeek = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };

      for(String s: daysOfWeek)
      {
         System.out.print(s + "\t");
         System.out.println("Let's make a \nnew line and a double \t\ttab here.");
      }
    }
}
