代码搜索:如何学习 PL?
找到约 10,000 项符合「如何学习 PL?」的源代码
代码结果 10,000
www.eeworm.com/read/285976/8796023
pl dumpvar.pl
package DUMPVAR;
sub dumpvar {
($packageName) = @_;
$rPackage = \%{"${packageName}::"}; # Get a reference to the appropriate symbol table hash.
$, = " " ;
while (($varName, $glob
www.eeworm.com/read/285976/8796027
pl menu.pl
use Tk;
$top = MainWindow->new();
# Create Menu Bar
$menu_bar = $top->Frame()->pack('-side' => 'top');
#Search menu button
$search_mb = $menu_bar->Menubutton('-text' => 'Search',
www.eeworm.com/read/285976/8796030
pl tetris.pl
###############################################################################
# tetris.pl - tetris using Perl and Tk
# ... Sriram
#############################################
www.eeworm.com/read/285976/8796034
pl canvas.pl
use Tk;
$top = MainWindow->new();
$canvas = $top->Canvas('-width' => 300, -height => 245)->pack();
# Draw a set of circles along an archimedean spiral
# The centers of these circles move along the
www.eeworm.com/read/285976/8796037
pl hlist.pl
use Tk;
require Tk::HList;
$top = MainWindow->new();
$h = $top->Scrolled('HList',
'-drawbranch' => 1,
'-separator' => '/',
www.eeworm.com/read/285976/8796039
pl listbox.pl
use Tk;
$top = MainWindow->new();
$wine_list = $top->Listbox("-width" => 20, "-height" => 5
)->pack();
$wine_list->insert('end', # Insert at end, the following list
"Napa Va
www.eeworm.com/read/285976/8796043
pl perlman.pl
#!/opt/bin/perl
use strict;
#--------------------------------------------------------------
# perlman: man page viewer in Perl
#--------------------------------------------------------------
use
www.eeworm.com/read/285976/8796048
pl scale.pl
use Tk;
# Show Celsius/Fahrenheit equivalence using scales.
$top = MainWindow->new();
$celsius_val = 50;
compute_fahrenheit();
$top->Scale('-orient' => 'horizontal',
'-from'
www.eeworm.com/read/285976/8796052
pl eval.pl
while (defined($s = )) { # Read a line into $s
$result = eval $s; # Evaluate that line
if ($@) { # Check for compile or run-time errors.
print "Invalid
www.eeworm.com/read/285976/8796054
pl col.pl
#!/opt/bin/perl
# Extracts columns of text from a file
# Usage : col [-s] col-range1, col-range2, files ...
# where col-range is specified as col1-col2 (column 1 through column2)
# or