in reply to Cryptic error message

Hi,
constant suggests
use constant PI => 4 * atan2(1, 1);
whereas you have
use constant PI => 4 * atan2 1, 1;
. Could that be it?
Regards,
svenXY

Replies are listed 'Best First'.
Re^2: Ablation.pm did not return a true value
by Phemto (Acolyte) on Oct 05, 2007 at 10:47 UTC
    Nope, that didn't do it. I'm wondering if it's something outside the file that's causing it. You can't get much simpler than returning a positive value, but I can't get it to do it.
      What is the output if you simply run perl Ablation.pm
        Let me check. Nothing. It just comes right back to the command prompt. This happens as it is as well as if I comment out the last 1;
      Hi,
      well, then comment out one module call at a time and check which one does it.
      Regards,
      svenXY