From b1f265fec66a76739369eeff9c0c7edd8539ea40 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Wed, 30 Apr 2003 22:38:35 +0000 Subject: talking bout perl_checker --- tutorial.html | 141 +++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 121 insertions(+), 20 deletions(-) (limited to 'tutorial.html') diff --git a/tutorial.html b/tutorial.html index 841472f..3db5d42 100644 --- a/tutorial.html +++ b/tutorial.html @@ -45,9 +45,9 @@

Thanks to perl-MDK-Common's own documentation, an easy way to directly access information about the provided - functions, you can use perldoc, for example - perldoc MDK::Common::Func will explain the functions - of the Func module. Use perldoc MDK::Common to view + functions is to use perldoc. For example, + perldoc MDK::Common::Func will list the functions + of the Func sub-module. Use perldoc MDK::Common to view information on all the available functions.

Additionally, perl-MDK-Common provides a binary @@ -64,7 +64,7 @@

Of course, a first look at the Perl language will be necessary for the reader. The following can be a good Perl - Tutorial (though there are many of them on the web): http://www.comp.leeds.ac.uk/Perl/.

Programming with perl-MDK-Common also emphasizes @@ -84,7 +84,7 @@ common technique among programmers, and maybe it's even worse with Perl programmers; but functional-style programs are often clearer, more expressive, more reusable, and more - maintainable + maintainable, than traditional programs

  • strict code style: Perl is known to be a language @@ -125,13 +125,13 @@

    Note: many functions' name, extending capabilities of existing functions, or being their functional counterpart, are suffixed with the underscore character (_); for - example, chomp_ is the equivalent of chomp, - but returns the chomp'ed results instead of modifying its - argument.

    + example, chomp_ is the semantical equivalent of + chomp, but returns the chomp'ed results instead of + modifying its argument.