diff options
author | Araq <rumpf_a@web.de> | 2011-05-17 19:22:29 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-05-17 19:22:29 +0200 |
commit | aeb0506132bc706750840ba0a79b486745e34c4e (patch) | |
tree | a1e2aeaf5e0309ec9aa5ee2bb1345b837e7af4a5 /tests/accept/run | |
parent | 6dd8c850513956e38f78c02e173df2c4d7b05cf3 (diff) | |
download | Nim-aeb0506132bc706750840ba0a79b486745e34c4e.tar.gz |
thread support: next iteration
Diffstat (limited to 'tests/accept/run')
-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)) |