summary refs log tree commit diff stats
path: root/web/snippets/snippet1.nim
blob: 85cb98142a526f995d9197b82f911101ae6818a0 (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!"