Continued fraction: Difference between revisions

Added Arturo implementation
(Added Arturo implementation)
Line 364:
Pi: +3.14159265358954e +0
</pre>
 
=={{header|Arturo}}==
 
<lang rebol>calc: function [f, n][
[a, b, temp]: 0.0
 
loop n..1 'i [
[a, b]: call f @[i]
temp: b // a + temp
]
[a, b]: call f @[0]
return a + temp
]
 
sqrt2: function [n][
(n > 0)? -> [2.0, 1.0] -> [1.0, 1.0]
]
 
napier: function [n][
a: (n > 0)? -> to :floating n -> 2.0
b: (n > 1)? -> to :floating n-1 -> 1.0
@[a, b]
]
 
Pi: function [n][
a: (n > 0)? -> 6.0 -> 3.0
b: ((2 * to :floating n)-1) ^ 2
@[a, b]
]
 
print calc 'sqrt2 20
print calc 'napier 15
print calc 'Pi 10000</lang>
 
{{out}}
 
<pre>1.414213562373095
2.718281828459046
3.141592653589544</pre>
 
=={{header|ATS}}==
1,532

edits