You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
241 B

  1. /*
  2. * Written by : Bin Hong Lee
  3. * Last edited : 4/27/2016
  4. */
  5. class Main
  6. {
  7. static BookFactory books = new BookFactory();
  8. public static void main(String[] args)
  9. {
  10. }
  11. public static void newBook()
  12. {
  13. books.newBook();
  14. }
  15. }