examples: Trim .nim files trailing whitespace

via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
This commit is contained in:
Adam Strzelecki
2015-09-04 23:05:22 +02:00
parent e80465dacf
commit 5d80548cce
15 changed files with 141 additions and 141 deletions

View File

@@ -1,4 +1,4 @@
import strutils
echo "Give a list of integers (separated by spaces): ",
echo "Give a list of integers (separated by spaces): ",
stdin.readLine.split.each(parseInt).max,
" is the maximum!"
" is the maximum!"