Skip to content

Instantly share code, notes, and snippets.

@hisaichi5518
Created February 19, 2015 00:54
Show Gist options
  • Save hisaichi5518/ecabd3f6db07d8012d7b to your computer and use it in GitHub Desktop.
Save hisaichi5518/ecabd3f6db07d8012d7b to your computer and use it in GitHub Desktop.
class String
def uzulla?
self == "うずら"
end
def udzura?
self == "うづら"
end
end
p "うずら".uzulla? #=> true
p "うづら".udzura? #=> true
p "うづら".uzulla? #=> false
p "うずら".udzura? #=> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment