RosettaCodeData/Task/Scope-Function-names-and-labels/Ruby/scope-function-names-and-labels.rb
2017-09-25 22:28:19 +02:00

7 lines
113 B
Ruby

def welcome(name)
puts "hello #{name}"
end
puts "What is your name?"
$name = STDIN.gets
welcome($name)
return