代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/335984/12484917
pl genpsdriver.pl
#!/usr/bin/perl
#
# Runs the equivalent of the following command line:
#
# $(PERL) $(srcdir)/genps.pl -subtitle "version `cat ../version`" \
# nasmdoc.dip
#
# This is imple
www.eeworm.com/read/335984/12484920
pl rdsrc.pl
#!/usr/bin/perl
# Read the source-form of the NASM manual and generate the various
# output forms.
# TODO:
#
# Ellipsis support would be nice.
# Source-form features:
# ------------------
www.eeworm.com/read/335984/12484923
pl genps.pl
#!/usr/bin/perl
#
# Format the documentation as PostScript
#
require 'psfonts.ph'; # The fonts we want to use
require 'pswidth.ph'; # PostScript string width
use Fcntl;
#
# PostScript
www.eeworm.com/read/335984/12484926
pl afmmetrics.pl
#!/usr/bin/perl
#
# Parse AFM metric files
#
@widths = ((undef)x256);
while ( $line = ) {
if ( $line =~ /^\s*FontName\s+(.*)\s*$/ ) {
$fontname = $1;
} elsif ( $line =~ /^
www.eeworm.com/read/335984/12485141
pl findleak.pl
#!/usr/bin/perl
# From: Ed Beroset
my %mem = {};
my %alloc = {};
while()
{
if (/realloc\((0x[0-9a-f]+).*\).*returns \((0x[0-9a-f]+)/)
{
www.eeworm.com/read/335984/12485198
pl version.pl
#!/usr/bin/perl
#
# version.pl
# $Id: version.pl,v 1.4 2002/05/21 02:28:51 hpa Exp $
#
# Parse the NASM version file and produce appropriate macros
#
# The NASM version number is assumed to con
www.eeworm.com/read/335880/12491734
pl makefile.pl
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Text::Reflow',
'VERSION_FROM
www.eeworm.com/read/335880/12491750
pl test.pl
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'
######################### We start with some black magic
www.eeworm.com/read/335879/12491768
pl makefile.pl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Cisco::Version',
AUTHOR => 'Maarten Wallraf ',
VERSION_FROM =>
www.eeworm.com/read/148019/12499651
pl pack.pl
#
# Pack and check a new distribution of yabasic
#
use IPC::Open3;
use File::Copy;
# Variables, that can be configured
$homepagedir="E:\\Html\\Homepage";
$downloaddir=$homepagedir."\\downlo