call-seq:
Math.sin(x) -> numeric
Computes the sine of x (in radians) and returns its value in the range -1..1.
1690 1691 1692
# File 'lib/source/ruby.rb', line 1690 def self.sin(x) `Math.sin(x)` end