diff options
author | Araq <rumpf_a@web.de> | 2015-10-21 02:18:38 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-10-21 02:18:38 +0200 |
commit | 3d512a73e61b27fc5a6de24f281d7f42db784884 (patch) | |
tree | 8ab2610aa1f51f63c3feff249d91b7b0350cb4aa /doc/tut2.txt | |
parent | d221241ac56bf14a38ac9587a6b88b9fae2585c3 (diff) | |
download | Nim-3d512a73e61b27fc5a6de24f281d7f42db784884.tar.gz |
documentation improvements; system.nim docs adapted to unix's braindead idea of how software should be packaged which didn't work in 1970 and surprise doesn't work in 2015 either
Diffstat (limited to 'doc/tut2.txt')
-rw-r--r-- | doc/tut2.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut2.txt b/doc/tut2.txt index 83ea9ad33..db9e4cd58 100644 --- a/doc/tut2.txt +++ b/doc/tut2.txt @@ -215,7 +215,7 @@ postfix notation.) So "pure object oriented" code is easy to write: .. code-block:: nim - import strutils + import strutils, sequtils stdout.writeLine("Give a list of numbers (separated by spaces): ") stdout.write(stdin.readLine.split.map(parseInt).max.`$`) |