Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1391 - 1400 of 2,636 for host:perldoc.perl.org (0.04 sec)

  1. bigrat.txt

    package bigrat; use strict; use warnings; use Carp qw< carp croak >; our $VERSION = '0.67'; use Exporter; our @ISA = qw( Exporter ); our @EXPORT_OK = qw( PI e bpi bexp hex oct ); our @EXPORT = qw( ...
    perldoc.perl.org/bigrat.txt
    Registered: Tue Jul 08 08:05:38 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  2. English.txt

    package English; our $VERSION = '1.11'; require Exporter; @ISA = qw(Exporter); =head1 NAME English - use nice English (or awk) names for ugly punctuation variables =head1 SYNOPSIS use English; use ...
    perldoc.perl.org/English.txt
    Registered: Tue Jul 08 07:46:32 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. keys.txt

    =over =item keys HASH X<keys> X<key> =item keys ARRAY Called in list context, returns a list consisting of all the keys of the named hash, or in Perl 5.12 or later, the indices of an array. Perl re...
    perldoc.perl.org/functions/keys.txt
    Registered: Tue Jul 08 10:19:40 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  4. closedir.txt

    =over =item closedir DIRHANDLE X<closedir> Closes a directory opened by L<C<opendir>|/opendir DIRHANDLE,EXPR> and returns the success of that system call. =back 163
    perldoc.perl.org/functions/closedir.txt
    Registered: Tue Jul 08 10:27:56 UTC 2025
    - 163 bytes
    - Viewed (0)
  5. perlfunc.txt

    =head1 NAME X<function> perlfunc - Perl builtin functions =head1 DESCRIPTION The functions in this section can serve as terms in an expression. They fall into two major categories: list operators a...
    perldoc.perl.org/perlfunc.txt
    Registered: Mon Jul 07 21:17:39 UTC 2025
    - 416.4K bytes
    - Viewed (0)
  6. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME C<goto> transfers execution to a specified point in the program. Unlike a function call, execution does not return to ...
    perldoc.perl.org/functions/goto.txt
    Registered: Tue Jul 08 19:29:25 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. print.txt

    =over =item print FILEHANDLE LIST X<print> =item print FILEHANDLE =item print LIST =item print Prints a string or a list of strings. Returns true if successful. FILEHANDLE may be a scalar variable ...
    perldoc.perl.org/functions/print.txt
    Registered: Tue Jul 08 18:30:36 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. eof.txt

    =over =item eof FILEHANDLE X<eof> X<end of file> X<end-of-file> =item eof () =item eof Returns 1 if the next read on FILEHANDLE will return end of file I<or> if FILEHANDLE is not open. FILEHANDLE m...
    perldoc.perl.org/functions/eof.txt
    Registered: Tue Jul 08 18:23:26 UTC 2025
    - 2K bytes
    - Viewed (0)
  9. mkdir.txt

    =over =item mkdir FILENAME,MODE X<mkdir> X<md> X<directory, create> =item mkdir FILENAME =item mkdir Creates the directory specified by FILENAME, with permissions specified by MODE (as modified by ...
    perldoc.perl.org/functions/mkdir.txt
    Registered: Tue Jul 08 19:02:39 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  10. chmod.txt

    =over =item chmod LIST X<chmod> X<permission> X<mode> Changes the permissions of a list of files. The first element of the list must be the numeric mode, which should probably be an octal number, a...
    perldoc.perl.org/functions/chmod.txt
    Registered: Tue Jul 08 20:20:33 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top