ExtUtils::Miniperl - write the C code for perlmain.c

NAME SYNOPSIS DESCRIPTION SEE ALSO NAME ExtUtils::Miniperl - write the C code for perlmain.c SYNOPSIS use ExtUtils::Miniperl; writemain(@directories); # or writemain($fh, @directories); # or writemain(\$filename, @directories); DESCRIPTION writemain() takes an argument list of directories containing archive libraries that relate to perl modules and should be linked into a new perl binary. It writes a corresponding perlmain.c file that is a plain C file containing all the bootstrap code to ma

le

le These operators are documented in perlop.

Net::SMTP - Simple Mail Transfer Protocol Client

NAME SYNOPSIS DESCRIPTION EXAMPLES CONSTRUCTOR METHODS ADDRESSES SEE ALSO AUTHOR COPYRIGHT NAME Net::SMTP - Simple Mail Transfer Protocol Client SYNOPSIS use Net::SMTP; # Constructors $smtp = Net::SMTP->new('mailhost'); $smtp = Net::SMTP->new('mailhost', Timeout => 60); DESCRIPTION This module implements a client interface to the SMTP and ESMTP protocol, enabling a perl5 application to talk to SMTP servers. This documentation assumes that you are familiar with the concepts of the S

IO::Handle->format_line_break_characters EXPR

IO::Handle->format_line_break_characters EXPR

$WARNING

$WARNING

gethostbyaddr

gethostbyaddr ADDR,ADDRTYPE

perlsyn - Perl syntax

NAME DESCRIPTIONDeclarations Comments Simple Statements Truth and Falsehood Statement Modifiers Compound Statements Loop Control For Loops Foreach Loops Basic BLOCKs Switch Statements Goto The Ellipsis Statement PODs: Embedded Documentation Plain Old Comments (Not!) Experimental Details on given and when NAME perlsyn - Perl syntax DESCRIPTION A Perl program consists of a sequence of declarations and statements which run from the top to the bottom. Loops, subroutines, and oth

$FORMAT_LINES_LEFT

$FORMAT_LINES_LEFT

open

open FILEHANDLE,EXPR open FILEHANDLE,MODE,EXPR open FILEHANDLE,MODE,EXPR,LIST open FILEHANDLE,MODE,REFERENCE open FILEHANDLE Opens the file whose filename is given by EXPR, and associates it with FILEHANDLE. Simple examples to open a file for reading: open(my $fh, "<", "input.txt") or die "cannot open < input.txt: $!"; and for writing: open(my $fh, ">", "output.txt") or die "cannot open > output.txt: $!"; (The following is a comprehensive reference to open(): for a gentler

TAP::Parser::Grammar - A grammar for the Test Anything Protocol.

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods TAP GRAMMAR SUBCLASSING SEE ALSO NAME TAP::Parser::Grammar - A grammar for the Test Anything Protocol. VERSION Version 3.35 SYNOPSIS use TAP::Parser::Grammar; my $grammar = $self->make_grammar({ iterator => $tap_parser_iterator, parser => $tap_parser, version => 12, }); my $result = $grammar->tokenize; DESCRIPTION TAP::Parser::Grammar tokenizes lines from a TAP::Parser::Iterator and constructs