Posts Tagged ‘perl’
enc2xs — Perl Encode Module Generator
USAGE
enc2xs -[options]
enc2xs -M ModName mapfiles…
enc2xs -C
DESCRIPTION
enc2xs builds a Perl extension for use by Encode from either [...]
constant – Perl pragma to declare constants
USAGE
use constant PI => 4 * atan2(1, 1);
use constant DEBUG => 0;
print “Pi [...]
autouse – postpone load of modules until a function is used
USAGE
use autouse ’Carp’ => qw(carp croak);
carp “this carp was predeclared and autoused “;
DESCRIPTION
If the module “Module” is already loaded, then [...]
attrs – set/get attributes of a subroutine (deprecated)
USAGE
sub foo {
use attrs qw(locked method);
…
[...]
attributes – get/set subroutine or variable attributes
USAGE
sub foo : method ;
my ($x,@y,%z) : Bent = 1;
my $s = sub : method { … };
[...]
a2p – Awk to Perl translator
USAGE
a2p [options] filename
DESCRIPTION
A2p takes an awk script specified on the command line (or from standard
input) and produces a comparable perl script on the standard output.
[...]
