mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-22 08:51:21 +00:00
dup docs: add an example with addQuoted (#15548)
* dup docs: add addQuoted example * fixup
This commit is contained in:
@@ -244,6 +244,11 @@ since (1, 1):
|
||||
var c = "xyz"
|
||||
|
||||
# An underscore (_) can be used to denote the place of the argument you're passing:
|
||||
doAssert "".dup(addQuoted(_, "foo")) == "\"foo\""
|
||||
# but `_` is optional here since the substitution is in 1st position:
|
||||
doAssert "".dup(addQuoted("foo")) == "\"foo\""
|
||||
|
||||
# chaining:
|
||||
# b = "xyz"
|
||||
var d = dup c:
|
||||
makePalindrome # xyzyx
|
||||
|
||||
Reference in New Issue
Block a user