diff options
Diffstat (limited to 'tests/stdlib/tropes.nim')
-rw-r--r-- | tests/stdlib/tropes.nim | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/stdlib/tropes.nim b/tests/stdlib/tropes.nim deleted file mode 100644 index 59239a600..000000000 --- a/tests/stdlib/tropes.nim +++ /dev/null @@ -1,36 +0,0 @@ -discard """ - file: "tropes.nim" - output: '''0 -3 - -123 -3 -6 -123 -123456 -2 -3''' -""" -import ropes - -var - r1 = rope("") - r2 = rope("123") - -echo r1.len -echo r2.len - -echo r1 -echo r2 - -r1.add("123") -r2.add("456") - -echo r1.len -echo r2.len - -echo r1 -echo r2 - -echo r1[1] -echo r2[2] \ No newline at end of file |