summary refs log blame commit diff stats
path: root/tests/system/toString.nim
blob: 17dcb3cb48dc598e322eb9f8706a832daef0b6e9 (plain) (tree)
1
2
3
4
5
6
7
8
9
           
                     


             


                  
                            

                           
discard """
  output:'''@[23, 45]
@[, foo, bar]
[, foo, bar]
[23, 45]'''
"""

echo($(@[23, 45]))
echo($(@["", "foo", "bar"]))
echo($(["", "foo", "bar"]))
echo($([23, 45]))