Format

tan(X)

Returns

The tangent of X, where X is in degrees.

mob/verb/test()
   usr << tan(0)  // 0
   usr << tan(45) // 1
   usr << tan(90) // infinity (or close enough)

See also