Created
November 16, 2014 17:53
-
-
Save tarellel/9ff966f52d91bb94c4c4 to your computer and use it in GitHub Desktop.
Today is Sunday!
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 Today | |
def initialize(kids = false) | |
@kids = kids | |
end | |
def sleepin? | |
if @kids == true | |
puts "Rise and shine!" | |
else | |
puts "What a life..." | |
end | |
end | |
end | |
Sunday = Today.new(true).sleepin? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment