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