mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
5 lines
142 B
Nim
5 lines
142 B
Nim
import strutils
|
|
echo "Give a list of integers (separated by spaces): ",
|
|
stdin.readLine.split.each(parseInt).max,
|
|
" is the maximum!"
|