RosettaCodeData/Task/Scope-Function-names-and-labels/Ruby/scope-function-names-and-labels.rb
2023-07-01 13:44:08 -04:00

7 lines
113 B
Ruby

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