RosettaCodeData/Task/Scope-Function-names-and-labels/Ruby/scope-function-names-and-labels.rb

8 lines
113 B
Ruby
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def welcome(name)
puts "hello #{name}"
end
puts "What is your name?"
$name = STDIN.gets
welcome($name)
return