in reply to I'd like to have an indication when the interpreter moves to the next file (using Filter-Include)?
{ my $count = 0; sub counter { $count ++; print "Included File # $count\n"; } } require "file.pl" && counter(); require "file2.pl" && counter();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: I'd like to have an indication when the interpreter moves to the next file (using Filter-Include)?
by mosh (Scribe) on Jul 14, 2005 at 12:19 UTC |