Created
July 10, 2019 02:19
-
-
Save cammac60/b719a2e05461bea452559486b83b9ba2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Class: Book | |
| Attributes: | |
| number_of_pages (integer) | |
| number_of_chapters (integer) | |
| author (string) | |
| hard_cover (boolean) | |
| pages_read (integer) | |
| Methods: | |
| calculate_pages_remaining = number_of_pages - pages_read | |
| calculate_remaining_reading_time = pages_remaining * average_reading_speed | |
| add_bookmark (place bookmark at pages_read) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment