package ex3_2;

/**
 * Title: Exercise 3.2 Class TreasureHunt - incomplete
 * Description: Main class which uses the methods of CarTracker
 * to locate hidden treasure
 *
 * Copyright:    Copyright (c) 2004, 2006
 * Company:      The Open University
 * @author M257 Course Team
 * @version 1.0 18/01/2004
 */

public class TreasureHunt
{
   public static void main(String[] args)
   {
      // Insert code to find out whether A or B
      // is the site of the treasure.
      // Then insert further statements to calculate the total travel
      // distance from Spyglass Hill to the Ship Inn via the treasure
      // location.
      System.out.println("Yo ho ho... Off to find the treasure");
   }
}
