diff options
Diffstat (limited to 'tests/accept/run/tsplit.nim')
-rwxr-xr-x | tests/accept/run/tsplit.nim | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/accept/run/tsplit.nim b/tests/accept/run/tsplit.nim deleted file mode 100755 index 711696b9e..000000000 --- a/tests/accept/run/tsplit.nim +++ /dev/null @@ -1,14 +0,0 @@ -import strutils - -var s = "" -for w in split("|abc|xy|z", {'|'}): - s.add("#") - s.add(w) - -if s == "#abc#xy#z": - echo "true" -else: - echo "false" - -#OUT true - |