diff options
Diffstat (limited to 'examples/keyval.nim')
-rw-r--r-- | examples/keyval.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/keyval.nim b/examples/keyval.nim index ae8cb8f08..a594c0fa8 100644 --- a/examples/keyval.nim +++ b/examples/keyval.nim @@ -3,7 +3,6 @@ import re for x in lines("myfile.txt"): if x =~ re"(\w+)=(.*)": - echo "Key: ", matches[0], - " Value: ", matches[1] + echo "Key: ", matches[0], " Value: ", matches[1] |