diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/accept/run/trepr.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/accept/run/trepr.nim b/tests/accept/run/trepr.nim index 19ed8e180..622c9c78a 100644 --- a/tests/accept/run/trepr.nim +++ b/tests/accept/run/trepr.nim @@ -11,4 +11,8 @@ var val = {a, b} stdout.write(repr(val)) stdout.writeln(repr({'a'..'z', 'A'..'Z'})) +#var testseq: seq[string] = @[ +# "a", "b", "c", "d", "e" +#] +#echo(repr(testseq)) |