public class FurnitureTester {
	
	public static void main(String[] args) {
		Furniture f1 = new Furniture("vase", "x1z4322", "ceramic", 40.00);
		Furniture f2 = new Furniture("rocking chair", "ab998c", "wood", 179.99);
		
		System.out.println(f1);
		System.out.println(f1.getName() + " sale price: $" + f1.salePrice() +"\n");
		System.out.println(f2);
		
		/* 1) Create a subclass of the Furniture class for a certain type of furniture */
			
		/* 2) Create another subclass that includes a has-a relationship */
		
		/* 3) Create a furniture array the contains different types of furniture */

	}
}