Skip to content

Instantly share code, notes, and snippets.

@tarellel
Created November 16, 2014 17:53
Show Gist options
  • Save tarellel/9ff966f52d91bb94c4c4 to your computer and use it in GitHub Desktop.
Save tarellel/9ff966f52d91bb94c4c4 to your computer and use it in GitHub Desktop.
Today is Sunday!
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