Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1891 - 1900 of 3,449 for filetype:txt (0.07 sec)

  1. IO::File.txt

    # package IO::File; =head1 NAME IO::File - supply object methods for filehandles =head1 SYNOPSIS use IO::File; my $fh = IO::File->new(); if ($fh->open("< file")) { print <$fh>; $fh->close; } my $fh...
    perldoc.perl.org/IO::File.txt
    Registered: Thu Sep 04 17:36:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. Encode::KR::2022_KR.txt

    package Encode::KR::2022_KR; use strict; use warnings; our $VERSION = do { my @r = ( q$Revision: 2.4 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; use Encode qw(:fallbacks); use parent qw(Enco...
    perldoc.perl.org/Encode::KR::2022_KR.txt
    Registered: Thu Sep 04 15:57:14 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. IO.txt

    # package IO; use XSLoader (); use Carp; use strict; use warnings; our $VERSION = "1.55"; XSLoader::load 'IO', $VERSION; sub import { shift; warnings::warnif('deprecated', qq{Parameterless "use IO"...
    perldoc.perl.org/IO.txt
    Registered: Thu Sep 04 15:33:48 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. CPAN::Meta.txt

    use 5.006; use strict; use warnings; package CPAN::Meta; our $VERSION = '2.150010'; #pod =head1 SYNOPSIS #pod #pod use v5.10; #pod use strict; #pod use warnings; #pod use CPAN::Meta; #pod use Modul...
    perldoc.perl.org/CPAN::Meta.txt
    Registered: Wed Sep 03 23:07:54 UTC 2025
    - 29.6K bytes
    - Viewed (0)
  5. bignum.txt

    package bignum; 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/bignum.txt
    Registered: Wed Sep 03 21:12:00 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  6. Archive::Tar::File.txt

    package Archive::Tar::File; use strict; use Carp (); use IO::File; use File::Spec::Unix (); use File::Spec (); use File::Basename (); use Archive::Tar::Constant; use vars qw[@ISA $VERSION]; #@ISA =...
    perldoc.perl.org/Archive::Tar::File.txt
    Registered: Wed Sep 03 22:59:27 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  7. strict.txt

    package strict; $strict::VERSION = "1.14"; 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: Thu Sep 04 00:06:33 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  8. filetest.txt

    package filetest; our $VERSION = '1.03'; =head1 NAME filetest - Perl pragma to control the filetest permission operators =head1 SYNOPSIS $can_perhaps_read = -r "file"; # use the mode bits { use fil...
    perldoc.perl.org/filetest.txt
    Registered: Wed Sep 03 22:22:53 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. CORE.txt

    =head1 NAME CORE - Namespace for Perl's core routines =head1 SYNOPSIS BEGIN { *CORE::GLOBAL::hex = sub { 1; }; } print hex("0x50"),"\n"; # prints 1 print CORE::hex("0x50"),"\n"; # prints 80 CORE::s...
    perldoc.perl.org/CORE.txt
    Registered: Wed Sep 03 23:22:53 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  10. sort.txt

    package sort; use strict; use warnings; our $VERSION = '2.06'; sub import { shift; if (@_ == 0) { require Carp; Carp::croak("sort pragma requires arguments"); } $^H{sort} //= 0; for my $subpragma (...
    perldoc.perl.org/sort.txt
    Registered: Thu Sep 04 01:45:03 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top