Skip to content

Instantly share code, notes, and snippets.

@justinrolston
Created September 5, 2013 02:43
Show Gist options
  • Save justinrolston/6445442 to your computer and use it in GitHub Desktop.
Save justinrolston/6445442 to your computer and use it in GitHub Desktop.
bob exercise
class Bob
def hey statement
return 'Fine. Be that way!' if statement.strip == ''
return 'Woah, chill out!' if statement == statement.upcase
return 'Sure.' if statement[-1,1] == '?'
return 'Whatever.'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment