Skip to content

Instantly share code, notes, and snippets.

@844196
Created May 17, 2015 08:07
Show Gist options
  • Save 844196/6f5ccf9246b8d0d1b3ee to your computer and use it in GitHub Desktop.
Save 844196/6f5ccf9246b8d0d1b3ee to your computer and use it in GitHub Desktop.
か゛わ゛い゛い゛な゛ぁ゛だ゛い゛ち゛く゛ん゛
class String
def hirano
rtn = ''
self.each_char {|c| rtn << "#{c}゛" }
rtn
end
end
puts "かわいいなぁだいちくん".hirano
# => か゛わ゛い゛い゛な゛ぁ゛だ゛い゛ち゛く゛ん゛
function hirano() {
cat - | sed -e 's/\(.\)/\1゛/g'
}
echo "かわいいなぁだいちくん" | hirano
# => か゛わ゛い゛い゛な゛ぁ゛だ゛い゛ち゛く゛ん゛
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment