First post! Just put this site up and will be finalizing it shortly.

def initialize(name)
  puts "Hi, #{name}."
end

initialize('You')
#=> prints 'Hi, You.' to STDOUT.