Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test ใƒ†ใ‚นใƒˆ

Results 41 - 50 of 77 for host:perldoc.perl.org (0.01 sec)

  1. $^C.txt

    =over =item $COMPILING =item $^C X<$^C> X<$COMPILING> The current value of the flag associated with the B<-c> switch. Mainly of use with B<-MO=...> to allow code to alter its behavior when being co...
    perldoc.perl.org/variables/$^C.txt
    Registered: Fri May 17 23:06:23 UTC 2024
    - 401 bytes
    - Viewed (0)
  2. $^D.txt

    =over =item $DEBUGGING =item $^D X<$^D> X<$DEBUGGING> The current value of the debugging flags. May be read or set. Like its L<command-line equivalent|perlrun/B<-D>I<letters>>, you can use numeric ...
    perldoc.perl.org/variables/$^D.txt
    Registered: Fri May 17 23:13:34 UTC 2024
    - 437 bytes
    - Viewed (0)
  3. $^W.txt

    =over =item $WARNING =item $^W X<$^W> X<$WARNING> The current value of the warning switch, initially true if B<-w> was used, false otherwise, but directly modifiable. See also L<warnings>. Mnemonic...
    perldoc.perl.org/variables/$^W.txt
    Registered: Fri May 17 23:56:15 UTC 2024
    - 239 bytes
    - Viewed (0)
  4. perlmodinstall.txt

    =head1 NAME perlmodinstall - Installing CPAN Modules =head1 DESCRIPTION You can think of a module as the fundamental unit of reusable Perl code; see L<perlmod> for details. Whenever anyone creates ...
    perldoc.perl.org/perlmodinstall.txt
    Registered: Fri May 17 14:50:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. strict.txt

    package strict; $strict::VERSION = "1.12"; my ( %bitmask, %explicit_bitmask ); BEGIN { # Verify that we're called correctly so that strictures will work. # Can't use Carp, since Carp uses us! # see...
    perldoc.perl.org/strict.txt
    Registered: Fri May 17 14:06:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. $_.txt

    =over =item $ARG =item $_ X<$_> X<$ARG> The default input and pattern-searching space. The following pairs are equivalent: while (<>) {...} # equivalent only in while! while (defined($_ = <>)) {......
    perldoc.perl.org/variables/$_.txt
    Registered: Fri May 17 17:32:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. $^M.txt

    =over =item $^M X<$^M> By default, running out of memory is an untrappable, fatal error. However, if suitably built, Perl can use the contents of C<$^M> as an emergency memory pool after C<die()>in...
    perldoc.perl.org/variables/$^M.txt
    Registered: Fri May 17 17:48:50 UTC 2024
    - 667 bytes
    - Viewed (0)
  8. @F.txt

    =over =item @F X<@F> The array C<@F> contains the fields of each line read in when autosplit mode is turned on. See L<perlrun|perlrun/-a> for the B<-a> switch. This array is package-specific, and m...
    perldoc.perl.org/variables/@F.txt
    Registered: Fri May 17 17:05:49 UTC 2024
    - 312 bytes
    - Viewed (0)
  9. $].txt

    =over =item $OLD_PERL_VERSION =item $] X<$]> X<$OLD_PERL_VERSION> The revision, version, and subversion of the Perl interpreter, represented as a decimal of the form 5.XXXYYY, where XXX is the vers...
    perldoc.perl.org/variables/$].txt
    Registered: Fri May 17 19:22:45 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. $..txt

    =over =item HANDLE->input_line_number( EXPR ) =item $INPUT_LINE_NUMBER =item $NR =item $. X<$.> X<$NR> X<$INPUT_LINE_NUMBER> X<line number> Current line number for the last filehandle accessed. Eac...
    perldoc.perl.org/variables/$..txt
    Registered: Fri May 17 21:54:32 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top