summary refs log tree commit diff stats
path: root/tests/iter/titer5.nim
blob: cb691ffdbdc19dc98d619aba084dbfd566543ca5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
  output: "abcxyz"
"""
# Test method call syntax for iterators:
import strutils

const lines = """abc  xyz"""

for x in lines.split():
  stdout.write(x)

#OUT abcxyz
stdout.write "\n"