[13]Some names are always in
package main regardless of the current package:
ARGV, ARGVOUT,
ENV, INC,
SIG, STDERR,
STDIN, and STDOUT. You can
always refer to @INC and be assured of getting
@main::INC. The punctuation mark variables such as
$_, $2, and
$! are either all lexicals or forced into package
main, so when you write $. you
never get $Navigation::. by mistake.