diff options
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.`$`) |