Help for this page

Select Code to Download


  1. or download this
    my $shared_memory_segment_created = 0;
    
    ...
            1;
        };
    }
    
  2. or download this
        eval {
            require Devel::Trace::Subs;
    ...
        if (! defined &trace){
            *trace = sub {};
        }
    
  3. or download this
    my $thing_ok = eval {
        do_something();
    ...
            warn $@;
        }
    }