/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.exm.chp07;
import com.exm.chp08.Book;
/**
*
* @author Supervisor
*/
public class Shapes6 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Book b = new Book("Lolity", "james callog", 1998);
ExtBook eb = new ExtBook("title", "author", 1020, "publisher");
}
}