mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
20 lines
241 B
Nim
20 lines
241 B
Nim
discard """
|
|
file: "tsplit2.nim"
|
|
output: "true"
|
|
"""
|
|
import strutils
|
|
|
|
var s = ""
|
|
for w in split("|abc|xy|z", {'|'}):
|
|
s.add("#")
|
|
s.add(w)
|
|
|
|
try:
|
|
discard "hello".split("")
|
|
echo "false"
|
|
except AssertionError:
|
|
echo "true"
|
|
|
|
#OUT true
|
|
|