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.
 
 

15 lines
175 B

  1. class Main
  2. {
  3. static BookFactory books = new BookFactory();
  4. public static void main(String[] args)
  5. {
  6. }
  7. public static void newBook()
  8. {
  9. books.newBook();
  10. }
  11. }