代码搜索:PL 有哪些应用?

找到约 10,000 项符合「PL 有哪些应用?」的源代码

代码结果 10,000
www.eeworm.com/read/437979/7738084

txt lang_pl.txt

// Polish language module for EVEREST // // Translated by: // Maciej Orzech (translatemaciej-orzechpl) // // Currently maintained by: // Maciej Orzech (translatemaciej-orzech
www.eeworm.com/read/435688/7787742

pl demo-lib.pl

#!/usr/bin/perl -w # # Perl library demo with the GTK-server 2.0.6 # Tested with Perl 5.8.7 on Slackware Linux 10.2 # # December 18, 2005 - PvE. # #------------------------ Main starts here # Tell PE
www.eeworm.com/read/435688/7787743

pl demo-fifo.pl

#!/usr/bin/perl -w # # Perl named pipe demo with the GTK-server # Tested with Perl 5.8 on Slackware Linux 9.1 # # August 2, 2004 by Peter van Eerten # Revised for GTK-server 1.2 October 7, 2004 # Revi
www.eeworm.com/read/435688/7787766

pl demo-stdin.pl

#!/usr/bin/perl -w # # Perl 2-way pipe demo with the GTK-server 1.3 # Tested with Perl 5.8 on Slackware Linux 10 # Reported by Scott Crittenden to work on Win32 as well (28/4/2005). # # February 23, 2
www.eeworm.com/read/399963/7819068

pl phone1.pl

#!/usr/bin/perl -w %phonebook = ( "Bob" => "247305", "Phil" => "205832", "Sara" => "226010" ); # We created our hash just like a list, but used the => operator # (which is equivalent to a comma in m
www.eeworm.com/read/399963/7819069

pl cd_db.pl

#! /usr/bin/perl -w # Perl translation of chapter 2's shell CD database # Copyright (C) 1999 Wrox Press. # This program is free software; you can redistribute it and/or modify # it under the terms o
www.eeworm.com/read/399963/7819070

pl phone2.pl

#!/usr/bin/perl -w %phonebook = ( "Bob" => "247305", "Phil" => "205832", "Sara" => "226010" ); print "Sara's phone number is $phonebook{Sara}\n"; print "Bob's phone number is $phonebook{Bob}\n";
www.eeworm.com/read/399963/7819072

pl hello2.pl

#!/usr/bin/perl -w # hello2.pl $message = "Hello, World\n"; print $message;
www.eeworm.com/read/399963/7819073

pl hello3.pl

#!/usr/bin/perl -w # hello1.pl @message = ("\n", " ", "World", "Hello,"); print $message[3], $message[1], $message[2], $message[0];
www.eeworm.com/read/399963/7819074

pl hello1.pl

#!/usr/bin/perl -w # hello1.pl print "Hello World\n";