summary refs log blame commit diff stats
path: root/examples/maximum.nim
blob: 5e4a9cc5e09799d776638d7b4f8ecf4a9c21c002 (plain) (tree)
1
2
3
4
5
6





                                                                        
# Test high level features

import strutils

echo "Give a list of numbers (separated by spaces): "
stdin.readLine.splitSeq.each(parseInt).max.`$`.echo(" is the maximum!")