4 lines
65 B
Nim
4 lines
65 B
Nim
|
|
proc print(xs: varargs[string, `$`]) =
|
||
|
|
for x in xs:
|
||
|
|
echo x
|