2cdfe35e7 ^
d5acb88cc ^
2169fd63b ^
3b783f7e1 ^
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"