// create some books
Book foundation = new Book("Foundation");
foundation.setPublishedYear(1951);
foundation.addKeyWord("science fiction");
foundation.addKeyWord("psychohistory");
asimov.addBook(foundation);
Book cavesofsteel = new Book("The Caves of Steel");
cavesofsteel.setPublishedYear(1954);
cavesofsteel.addKeyWord("science fiction");
cavesofsteel.addKeyWord("robot");
cavesofsteel.addKeyWord("crime");