summaryrefslogtreecommitdiff
path: root/sample/pi.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/pi.rb')
-rw-r--r--sample/pi.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/pi.rb b/sample/pi.rb
index 49067cc347..63be974285 100644
--- a/sample/pi.rb
+++ b/sample/pi.rb
@@ -2,7 +2,7 @@
k, a, b, a1, b1 = 2, 4, 1, 12, 4
-while TRUE
+loop do
# Next approximation
p, q, k = k*k, 2*k+1, k+1
a, b, a1, b1 = a1, b1, p*a+q*a1, p*b+q*b1