Skip to content

Instantly share code, notes, and snippets.

@aereal
Created June 12, 2010 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aereal/435727 to your computer and use it in GitHub Desktop.
Save aereal/435727 to your computer and use it in GitHub Desktop.
TaniRyoko = "谷良子"
def new(syntanix, shout=nil)
if shout
puts "#{shout}! 新#{syntanix}, #{shout}!!!"
else
puts "New #{syntanix} って…100万回も言われてます。もうあきましたっ!!ばーかばーか。"
end
end
new TaniRyoko, "もげええええええ" # => "もげええええええ! 新谷良子, もげええええええ!!!"
new TaniRyoko # => "New 谷良子 って…100万回も言われてます。もうあきましたっ!!ばーかばーか。"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment