in reply to OT: ASA formula

Hmmm POSIX..... does that come installed with Perl? If not, how can I tell if it is already installed? If not installed where can I grab it from, etc..,? Right now when I try including use POSIX qw/tan/; the Perl cgi app I have comes back with a cgi error page.

Replies are listed 'Best First'.
Re^2: OT: ASA formula
by toolic (Bishop) on Apr 19, 2011 at 16:12 UTC
    POSIX should be installed because it is a Core module, and has been for a long time:
    $ perl -MPOSIX=tan -e 1 $ corelist POSIX POSIX was first released with perl 5
Re^2: OT: ASA formula
by jgamble (Pilgrim) on Apr 19, 2011 at 22:45 UTC

    There is of course also Math::Trig (in fact the POSIX entry for tan() also references this).

    It also is part of Perl's core distribution, but if your administrator has been doing things to the distribution (which might account for your error), then all bets are off.