mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
10 lines
152 B
Nim
10 lines
152 B
Nim
discard """
|
|
output:'''@[23, 45]
|
|
@[, foo, bar]'''
|
|
"""
|
|
|
|
echo($(@[23, 45]))
|
|
echo($(@["", "foo", "bar"]))
|
|
#echo($(["", "foo", "bar"]))
|
|
#echo($([23, 45]))
|