Skip to content

Instantly share code, notes, and snippets.

@pius
Created October 14, 2009 17:16
Show Gist options
  • Save pius/210233 to your computer and use it in GitHub Desktop.
Save pius/210233 to your computer and use it in GitHub Desktop.
def predicate_nominative_pronoun
case gender
when 'm', 'M'
return 'him'
when 'f', 'F'
return 'her'
else
return last_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment