4 lines
59 B
Text
4 lines
59 B
Text
|
|
func print_all(*things) {
|
||
|
|
things.each { |x| say x };
|
||
|
|
}
|