
Perl
yjgx007
码农20年
展开
-
The Perl Tutorial: What's Perl? (1)
http://www.sitepoint.com/article/perl-tutorial-whats-perl The Perl Tutorial: Whats Perl? (Perl是什么?) By Boris Mordkovich March 15th 2001 Reader Rating: 8.1 Nov 24th 2004 yjgx007译 写在开始,为什么要译? 一是个原创 2004-11-22 23:49:00 · 1691 阅读 · 0 评论 -
The Perl Tutorial: Running a Perl Program (2)
Running a Perl Program (运行一个 Perl 程序) 注意: 这里不会详述 Perl 的很多细节,只会教你如何开始使用 Perl 语言写一段程序并使它开始工作。 Note: This will not teach you everything about Perl but it should give you a good idea of how the langua原创 2004-11-24 23:31:00 · 1411 阅读 · 0 评论 -
The Perl Tutorial: Operators (3)
Operators (操作符) 其它计算机语言所具有的操作符 ,Perl 也同样支持。操作符用来对操作数进行运算,在所有计算机语言中, Perl 的操作符具有一定的优势。 Perl supports the same set of operators as most other computer languages. Operators allow a computer language原创 2004-11-28 22:09:00 · 1089 阅读 · 0 评论 -
The Perl Tutorial: Functions (4)
Functions (函数) 通常将可重复使用的代码组织起来形成函数。 Perl 用关键字 sub 声明函数,紧接着用 { 号开始 } 结束: Functions are used to organize your code into small pieces which can be reused. Perl declares functions using the sub keywor原创 2004-12-07 21:52:00 · 1116 阅读 · 0 评论