mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
7 lines
173 B
Nim
7 lines
173 B
Nim
# Test high level features
|
|
|
|
import strutils
|
|
|
|
echo "Give a list of numbers (separated by spaces): "
|
|
stdin.readLine.split.map(parseInt).max.`$`.echo(" is the maximum!")
|