
/**
 *
 * program to use the "Marriage" class
 *
 */

import java.lancs.*;

public class Chapter10n1
    {
    public static void main(String[] args)
	{
	Person hus, wife;
	Marriage wedding;

   	hus = new Person("Bill", "Jones", 35, Person.MALE);
  	wife = new Person("Jenny", "Smith", 32, Person.FEMALE);

	System.out.println("husband is " + hus + " and wife is " + wife);
   	wedding = new Marriage(hus, wife);
	System.out.println("wedding : " + wedding);
	System.out.println("husband is " + hus + " and wife is " + wife);
    	} // end of main method

    } // end of class Chapter10n1

