mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* fix #11352 strutil.insertSep handle negtive number * test for #11352 * optimize * not parts string var * Update lib/pure/strutils.nim Thanks! Co-authored-by: alaviss <leorize+oss@disroot.org> * need to be countdown Co-authored-by: alaviss <leorize+oss@disroot.org>
13 lines
218 B
Nim
13 lines
218 B
Nim
discard """
|
|
output: '''
|
|
-100
|
|
-100,000
|
|
100,000
|
|
'''
|
|
"""
|
|
# test https://github.com/nim-lang/Nim/issues/11352
|
|
|
|
import strutils
|
|
echo insertSep($(-100), ',')
|
|
echo insertSep($(-100_000), ',')
|
|
echo insertSep($(100_000), ',') |