mirror of
https://github.com/status-im/nim-stew.git
synced 2025-01-10 04:05:44 +00:00
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
|
|
|