summary refs log tree commit diff stats
path: root/examples
diff options
context:
space:
mode:
authorPeter Mora <morapeter@gmail.com>2015-10-05 22:41:54 +0200
committerPeter Mora <morapeter@gmail.com>2015-10-05 22:42:22 +0200
commit75097e2981e470197fa5649557875a9f60385973 (patch)
tree07f91724132a978ad267f8e9a920fa8d14ee255d /examples
parent0a8a2070d01489d036ececa78c87ef94325d3e9d (diff)
downloadNim-75097e2981e470197fa5649557875a9f60385973.tar.gz
sequtils related changes
Diffstat (limited to 'examples')
-rw-r--r--examples/maximum.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/maximum.nim b/examples/maximum.nim
index aa3fe375a..6552a8144 100644
--- a/examples/maximum.nim
+++ b/examples/maximum.nim
@@ -1,6 +1,6 @@
 # Test high level features
 
-import strutils
+import strutils, sequtils
 
 echo "Give a list of numbers (separated by spaces): "
 stdin.readLine.split.map(parseInt).max.`$`.echo(" is the maximum!")