index
:
Nim
this commit
devel
This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)
ahoang <ahoang@tilde.institute>
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
stdlib
/
tnilecho.nim
blob: ec8d71dab311dc90453a6d3014752b62841c104a (
plain
) (
blame
)
1
2
3
4
5
6
discard
"""
output: ""
"""
var
x
=
@[
"1"
,
""
,
"3"
]
doAssert
$
x
==
"""
@["1", "", "3"]
"""