mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +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!")
|