- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 471 - 480 of 2,657 for host:perldoc.perl.org (0.04 sec)
-
CPAN
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- use strict; package CPAN; $CPAN::VERSION = '1.9205'; $CPAN::VERSION = eval $CPAN::VERSION if $CPAN::VERSION =~ /_/; use CPAN::HandleConfi...perldoc.perl.org/5.10.0/CPANRegistered: Sat Dec 27 11:30:30 UTC 2025 - 432.7K bytes - Viewed (0) -
variables
=pod I<Full documentation of predefined variables: L<perlvar>> =head2 General Variables =over 8 =item * B<< $_ >> - The default input and pattern-searching space =item * B<< @_ >> - Within a subrou...perldoc.perl.org/5.28.2/variablesRegistered: Fri Dec 26 13:06:13 UTC 2025 - 10K bytes - Viewed (0) -
CPAN
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- # vim: ts=4 sts=4 sw=4: use strict; package CPAN; $CPAN::VERSION = '2.18'; $CPAN::VERSION =~ s/_//; # we need to run chdir all over and w...perldoc.perl.org/5.26.0/CPAN Similar Results (1)Registered: Sat Dec 27 11:26:59 UTC 2025 - 138K bytes - Viewed (0) -
our
=over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS C<our> makes a lexical alias to a package (i.e. global) variable of the same...perldoc.perl.org/5.43.5/functions/our Similar Results (5)Registered: Mon Jan 12 04:44:17 UTC 2026 - 4.6K bytes - Viewed (0) -
system.txt
=over =item system LIST X<system> X<shell> =item system PROGRAM LIST Does exactly the same thing as L<C<exec>|/exec LIST>, except that a fork is done first and the parent process waits for the chil...perldoc.perl.org/functions/system.txtRegistered: Sat Jan 17 14:31:49 UTC 2026 - 3.5K bytes - Viewed (0) -
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.txtRegistered: Sat Jan 17 11:52:55 UTC 2026 - 3K bytes - Viewed (0) -
exit.txt
=over =item exit EXPR X<exit> X<terminate> X<abort> =item exit Evaluates EXPR and exits immediately with that value. Example: my $ans = <STDIN>; exit 0 if $ans =~ /^[Xx]/; See also L<C<die>|/die LI...perldoc.perl.org/functions/exit.txtRegistered: Sat Jan 17 14:52:48 UTC 2026 - 1.3K bytes - Viewed (0) -
splice.txt
=over =item splice ARRAY,OFFSET,LENGTH,LIST X<splice> =item splice ARRAY,OFFSET,LENGTH =item splice ARRAY,OFFSET =item splice ARRAY Removes the elements designated by OFFSET and LENGTH from an arra...perldoc.perl.org/functions/splice.txtRegistered: Sat Jan 17 14:01:46 UTC 2026 - 1.6K bytes - Viewed (0) -
rand.txt
=over =item rand EXPR X<rand> X<random> =item rand Returns a random fractional number greater than or equal to C<0> and B<less> than the value of EXPR. (EXPR should be positive.) If EXPR is omitted...perldoc.perl.org/functions/rand.txtRegistered: Sat Jan 17 14:22:53 UTC 2026 - 1.3K bytes - Viewed (0) -
push.txt
=over =item push ARRAY,LIST X<push> X<stack> Adds one or more items to the B<end> of an array. my @animals = ("cat"); push(@animals, "mouse"); # ("cat", "mouse") my @colors = ("red"); push(@colors,...perldoc.perl.org/functions/push.txtRegistered: Sat Jan 17 12:12:14 UTC 2026 - 628 bytes - Viewed (0)