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

import strutils, sequtils

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