nim-stew/stew/shims/strings.nim

5 lines
86 B
Nim
Raw Normal View History

2021-12-02 15:24:02 +00:00
proc add*(str: var string, chars: openArray[char]) =
for c in chars:
str.add c