A function applied to an object with the dot
notation is called a member function.
The Time class has several member functions
used to find the state of the object:
now.get_seconds(); /* returns the seconds value of now */
now.get_minutes(); /* returns the minutes value of now */
now.get_hours(); /* returns the hours value of now */