index
:
nlp_scripts
master
Mirror of https://github.com/pks/nlp_scripts.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sum
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'sum')
-rwxr-xr-x
sum
4
1 files changed, 3 insertions, 1 deletions
diff --git a/sum b/sum
index 3fca95e..dac72d3 100755
--- a/
sum
+++ b/
sum
@@ -1,8 +1,10 @@
#!/usr/bin/env ruby
+
sum = 0.0
while line = STDIN.gets
- sum += line.strip.to_f
+ sum += line.to_f
end
+
puts sum