Help for this page

Select Code to Download


  1. or download this
    use overload q!""!=>sub{ eval { "whoops" } };
    eval { die bless {} };
    die $@ if $@;
    
  2. or download this
    use overload q!""!=>sub{ eval { "whoops" } };
    eval { die bless {} };
    my $exception = $@;
    die $exception if $exception;