ruby in 100 minutes good_morning method issue
- by user2525947
I have been doing the Ruby in 100 minutes on the JumpStart labs website, and encountered a problem during part 5.
I was asked to create a good_morning method that would print out a greeting such as 'Happy Monday, it's the 130 day of 2013'. Here is my current program:
class PersonalChef
def good_morning
today =…