This file contains 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
# Write a program that tells you the following: | |
# | |
# Hours in a year. How many hours are in a year? - 6pts | |
# Minutes in a decade. How many minutes are in a decade? - 6pts | |
# Your age in seconds. How many seconds old are you? - 6pts | |
# | |
# Define at least the following methods to accomplish these tasks: | |
# | |
# seconds_in_minutes(1) #=> 60 - 3pts | |
# minutes_in_hours(1) #=> 60 - 3pts |