Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > 75740eac77d8f60a2e7829308f35d563 > files > 35

perl-Devel-Trepan-1.0.0-2.mga7.noarch.rpm

#!perl
use strict;
use warnings;
sub problem {
    $SIG{__DIE__} = sub {
	die "<b problem> will set a break point here.\n"
    };
    warn "This line will run even if you enter <c problem>.\n";
}

problem();
exit(0);