radToDeg function

num radToDeg(
  1. num rad
)

Convert radians to degrees

Implementation

num radToDeg(num rad) => rad * (180.0 / pi);