# list0305.rb
# ポリモーフィズム

def arg_hello_world!( s, name )
  s << 'Hello'
  s << name
  s << 'World!'
end

s1 = ""
s2 = []
s3 = $stdout

arg_hello_world!(s1,'Ruby')
arg_hello_world!(s2,'C')
arg_hello_world!(s3,'C++')

p s1
p s2