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