/**  
 * A example of a main class
 * A program that models Venus and Serena Williams
 * and their doubles team.
 */
public class Sisters{

    public static void main(String[] arg){ // before execution of main
        
      System.out.println("hi");
      System.out.println(arg[0]);
      System.out.println(arg[1]);
      
        // call the static methods before constructing any instances
        int wins = Player.getOverallWins();        // 1 
        int losses = Player.getOverallLosses();  // 2
        
        // construct 2 instances
        Player serena = new Player("Serena");  // 3
        Player venus = new Player("Venus");    // 4
        
         // construct a Team and set its players
        Team team = new Team();                 // 5
        team.setPlayer1(serena);                   // 6
        team.setPlayer2(venus);                    // 7        
    }
}
