summary refs log tree commit diff stats
path: root/examples/maximum.nim
blob: aa3fe375abc1b86c09c42fc63a1415eb2af30b73 (plain) (blame)
1
2
3
4
5
6
# Test high level features

import strutils

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