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