5 lines
86 B
Nim
5 lines
86 B
Nim
|
proc add*(str: var string, chars: openarray[char]) =
|
||
|
for c in chars:
|
||
|
str.add c
|
||
|
|