G
George Bouras
I want to to have my die, the following does not work
use strict;
use warnings;
sub die;
die "oups";
sub die {
print "There was a problem : $_[0]\n";
}
use strict;
use warnings;
sub die;
die "oups";
sub die {
print "There was a problem : $_[0]\n";
}