5 lines
82 B
V
5 lines
82 B
V
fn print_all(things ...string) {
|
|
for x in things {
|
|
println(x)
|
|
}
|
|
}
|