PHP to Ruby
Convert PHP code into Ruby!
-
acos
Posted on March 17th, 2009 No commentsReturns the arc cosine of the argument provided in radians.
PHP
echo acos(0.7); // => 0.79539883018414;
Ruby
puts Math.acos(0.7); # => 0.79539883018414;


