summaryrefslogtreecommitdiff
path: root/sample/sieve.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-01-20 04:59:39 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-01-20 04:59:39 +0000
commit62e648e148b3cb9f96dcce808c55c02b7ccb4486 (patch)
tree9708892ece92e860d81559ab55e6b1f9400d7ffc /sample/sieve.rb
parentaeb049c573be4dc24dd20650f40e4777e0f698cf (diff)
ruby 1.3 cycle
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/RUBY@372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/sieve.rb')
-rw-r--r--sample/sieve.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/sample/sieve.rb b/sample/sieve.rb
index 03ff8a67f4..5e9f792d81 100644
--- a/sample/sieve.rb
+++ b/sample/sieve.rb
@@ -1,7 +1,6 @@
# sieve of Eratosthenes
sieve = []
-if ! max = ARGV.shift; max = 100; end
-max = max.to_i
+max = Integer(ARGV.shift || 100)
print "1"
for i in 2 .. max