module Functions
    class Csc < CMathFunction
      def initialize
        super("csc", Proc.new {|arg| 1 / CMath::sin(arg)})
      end