Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 931 - 940 of 1,302 for label:perl (0.03 sec)

  1. study.txt

    =over =item study SCALAR X<study> =item study At this time, C<study> does nothing. This may change in the future. Prior to Perl version 5.16, it would create an inverted index of all characters tha...
    perldoc.perl.org/functions/study.txt
    Registered: Sun Mar 09 07:33:45 UTC 2025
    - 476 bytes
    - Viewed (0)
  2. symlink.txt

    =over =item symlink OLDFILE,NEWFILE X<symlink> X<link> X<symbolic link> X<link, symbolic> Creates a new filename symbolically linked to the old filename. Returns C<1> for success, C<0> otherwise. O...
    perldoc.perl.org/functions/symlink.txt
    Registered: Sun Mar 09 09:19:51 UTC 2025
    - 398 bytes
    - Viewed (0)
  3. link.txt

    =over =item link OLDFILE,NEWFILE X<link> Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: L<perlport/link>. =back 183
    perldoc.perl.org/functions/link.txt
    Registered: Sun Mar 09 05:02:10 UTC 2025
    - 183 bytes
    - Viewed (0)
  4. die.txt

    =over =item die LIST X<die> X<throw> X<exception> X<raise> X<$@> X<abort> L<C<die>|/die LIST> raises an exception. Inside an L<C<eval>|/eval EXPR> the exception is stuffed into L<C<$@>|perlvar/$@> ...
    perldoc.perl.org/functions/die.txt
    Registered: Sun Mar 09 10:17:17 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. select.txt

    =over =item select FILEHANDLE X<select> X<filehandle, default> =item select Returns the currently selected filehandle. If FILEHANDLE is supplied, sets the new current default filehandle for output....
    perldoc.perl.org/functions/select.txt
    Registered: Sun Mar 09 09:57:32 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  6. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME The C<goto LABEL> form finds the statement labeled with LABEL and resumes execution there. It can't be used to get out...
    perldoc.perl.org/functions/goto.txt
    Registered: Sun Mar 09 11:59:00 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. umask.txt

    =over =item umask EXPR X<umask> =item umask Sets the umask for the process to EXPR and returns the previous value. If EXPR is omitted, merely returns the current umask. The Unix permission C<rwxr-x...
    perldoc.perl.org/functions/umask.txt
    Registered: Sun Mar 09 10:54:11 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. 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: Sun Mar 09 10:38:30 UTC 2025
    - 2K bytes
    - Viewed (0)
  9. syscall.txt

    =over =item syscall NUMBER, LIST X<syscall> X<system call> Calls the system call specified as the first element of the list, passing the remaining elements as arguments to the system call. If unimp...
    perldoc.perl.org/functions/syscall.txt
    Registered: Sun Mar 09 10:04:45 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. pop.txt

    =over =item pop ARRAY X<pop> X<stack> =item pop Removes and returns the B<last> element of the array, shortening the array by one element. my @arr = ('cat', 'dog', 'mouse'); my $item = pop(@arr); #...
    perldoc.perl.org/functions/pop.txt
    Registered: Sun Mar 09 09:42:29 UTC 2025
    - 902 bytes
    - Viewed (0)
Back to top