#!/usr/bin/perl
INIT {
print "here INIT\n";
}
print "here main\n";
prints
here INIT
here main
as expected. Also (as expected, I assume) when its run with perl -d, the debugger starts at print "here INIT\n";
My question: is there any way to tell Perl NOT to do that, and to stop at the first (next) statement in the body of the code?
In reply to Avoiding INIT by geoffleach
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |