mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
21 lines
213 B
Nim
21 lines
213 B
Nim
discard """
|
|
file: "tsplit.nim"
|
|
output: "true"
|
|
"""
|
|
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
|
|
|
|
|
|
|