Also sprach Sherm Pendley:
> "" <> writes:
>
>> Is there any way I can handle the die call
>
> Wrap your code in a block eval() - not to be confused with a string eval().
> eval() returns undef on failure, and you can check $@ for the message given
> to die(). For instance:
>
> # Not a complete program, obviously...
> eval {
> do_something();
> } or {
> warn $@ if $@;
> }
Depending on do_something's return value, this might still execute the
or-branch. I'd rather write this as:
eval {
do_something();
1;
} or warn $@;
Tassilo
--
use bigint;
$n=71423350343770280161397026330337371139054411854 220053437565440;
$m=-8,;;$_=$n&(0xff)<<$m,,$_>>=$m,,print+chr,,while(($ m+=

<=200);