in reply to Re^2: While loop does not terminate
in thread While loop does not terminate
Strictures don't bleed through to included packages. Consider:
# noname.pl: use warnings; use strict; use lib '.'; use noname1; print noname1::get_value(); # noname1.pm: package noname1; sub get_value { return $missingVar // 'Bogus value'; } 1;
Prints:
Bogus value
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: While loop does not terminate
by LanX (Saint) on Dec 13, 2020 at 21:19 UTC |