perlvar.pod -- why isn't @F here?
Jeff Pinyan [Tue, 29 May 2001 22:27:51 +0000 (18:27 -0400)]
Message-ID: <Pine.GSO.4.21.0105292227150.1961-100000@crusoe.crusoe.net>

p4raw-id: //depot/perl@10304

pod/perlvar.pod

index fc3a746..cd61068 100644 (file)
@@ -997,6 +997,13 @@ the script.  C<$#ARGV> is generally the number of arguments minus
 one, because C<$ARGV[0]> is the first argument, I<not> the program's
 command name itself.  See C<$0> for the command name.
 
+=item @F
+
+The array @F contains the fields of each line read in when autosplit
+mode is turned on.  See L<perlrun> for the B<-a> switch.  This array
+is package-specific, and must be declared or given a full package name
+if not in package main when running under C<strict 'vars'>.
+
 =item @INC
 
 The array @INC contains the list of places that the C<do EXPR>,