summary refs log tree commit diff stats
path: root/web/snippets/snippet1.nim
blob: b0895e0c09b0f5af286555436908a46baa2f3fcc (plain) (blame)
1
2
3
4
import strutils
echo "Give a list of integers (separated by spaces): ",
     stdin.readLine.split.each(parseInt).max,
     " is the maximum!"