AutoCAD
Advertisement
;;;  WIKI-TAN
; End comment mode if on |;
(DEFUN WIKI-TAN (X)
;| Returns the tangent of an angle
   Edit the source code for this function at 
  tan (AutoLISP function)
|;
 (/ (SIN X) (COS X))
)
Advertisement