From: Jeff Pinyan Date: Tue, 29 May 2001 22:27:51 +0000 (-0400) Subject: perlvar.pod -- why isn't @F here? X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9b0e6e7ac78a7fce8230b6418f1fbc16253fbb9b;p=p5sagit%2Fp5-mst-13.2.git perlvar.pod -- why isn't @F here? Message-ID: p4raw-id: //depot/perl@10304 --- diff --git a/pod/perlvar.pod b/pod/perlvar.pod index fc3a746..cd61068 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -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 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 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. + =item @INC The array @INC contains the list of places that the C,