RosettaCodeData/Task/Variadic-function/Ruby/variadic-function-1.rb

4 lines
56 B
Ruby

def print_all(*things)
things.each { |x| puts x }
end