Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 201 for label:perl (0.04 sec)

  1. threads.txt

    package threads; use 5.008; use strict; use warnings; our $VERSION = '2.43'; # remember to update version in POD! my $XS_VERSION = $VERSION; #$VERSION = eval $VERSION; # Verify this Perl supports t...
    perldoc.perl.org/threads.txt
    Registered: Tue Jul 08 00:52:12 UTC 2025
    - 37.1K bytes
    - Viewed (0)
  2. IPC::Open3.txt

    package IPC::Open3; use strict; no strict 'refs'; # because users pass me bareword filehandles use Exporter 'import'; use Carp; use Symbol qw(gensym qualify); our $VERSION = '1.24'; our @EXPORT = q...
    perldoc.perl.org/IPC::Open3.txt
    Registered: Tue Jul 08 00:39:19 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  3. CPAN.txt

    # -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- # vim: ts=4 sts=4 sw=4: use strict; package CPAN; $CPAN::VERSION = '2.38'; $CPAN::VERSION =~ s/_//; # we need to run chdir all over and w...
    perldoc.perl.org/CPAN.txt
    Registered: Tue Jul 08 00:07:33 UTC 2025
    - 146.1K bytes
    - Viewed (0)
  4. perlsub.txt

    =head1 NAME X<subroutine> X<function> perlsub - Perl subroutines (user-defined functions) =head1 SYNOPSIS To declare subroutines: X<subroutine, declaration> X<sub> sub NAME; # A "forward" declarati...
    perldoc.perl.org/perlsub.txt
    Registered: Tue Jul 08 03:56:25 UTC 2025
    - 76K bytes
    - Viewed (0)
  5. perlrun.txt

    =head1 NAME perlrun - how to execute the Perl interpreter =head1 SYNOPSIS B<perl> S<[ B<-gsTtuUWX> ]> S<[ B<-h?v> ] [ B<-V>[:I<configvar>] ]> S<[ B<-cw> ] [ B<-d>[B<t>][:I<debugger>] ] [ B<-D>[I<nu...
    perldoc.perl.org/perlrun.txt
    Registered: Tue Jul 08 06:16:25 UTC 2025
    - 57.8K bytes
    - Viewed (0)
  6. perlobj.txt

    =encoding utf8 =for comment Consistent formatting of this file is achieved with: perl ./Porting/podtidy pod/perlobj.pod =head1 NAME X<object> X<OOP> perlobj - Perl object reference =head1 DESCRIPTI...
    perldoc.perl.org/perlobj.txt
    Registered: Tue Jul 08 06:25:25 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  7. perldsc.txt

    =head1 NAME X<data structure> X<complex data structure> X<struct> perldsc - Perl Data Structures Cookbook =head1 DESCRIPTION Perl lets us have complex data structures. You can write something like ...
    perldoc.perl.org/perldsc.txt
    Registered: Tue Jul 08 05:28:01 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  8. sprintf.txt

    =over =item sprintf FORMAT, LIST X<sprintf> Returns a string formatted by the usual C<printf> conventions of the C library function C<sprintf>. See below for more details and see L<sprintf(3)> or L...
    perldoc.perl.org/functions/sprintf.txt
    Registered: Tue Jul 08 09:54:24 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  9. Digest::MD5.txt

    package Digest::MD5; use strict; use warnings; our $VERSION = '2.59'; require Exporter; *import = \&Exporter::import; our @EXPORT_OK = qw(md5 md5_hex md5_base64); our @ISA; eval { require Digest::b...
    perldoc.perl.org/Digest::MD5.txt
    Registered: Tue Jul 08 03:08:51 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  10. srand.txt

    =over =item srand EXPR X<srand> X<seed> X<randseed> =item srand Sets and returns the random number seed for the L<C<rand>|/rand EXPR> operator. The point of the function is to "seed" the L<C<rand>|...
    perldoc.perl.org/functions/srand.txt
    Registered: Tue Jul 08 10:10:30 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top