For now:

def print_hello(name)
  puts "Hello, #{name}"
end
print_hello('Everyone')
#=> prints 'Hello, Everyone' to STDOUT.