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

4 lines
41 B
Ruby

def print_all(*things)
puts things
end