3 lines
56 B
Ruby
3 lines
56 B
Ruby
def print_all(*things)
|
|
things.each { |x| puts x }
|
|
end
|
def print_all(*things)
|
|
things.each { |x| puts x }
|
|
end
|