sin function

num sin(
  1. num x
)

Computes the sine of the angle x given in radians.

Implementation

num sin(num x) => math.sin(x);