[Mastering-perl] Check out the chapters on configuration,
subroutines, and Pod
Florian Merges
fmerges at cpan.org
Wed Sep 20 11:31:06 EDT 2006
Hi,
I know you'll rewrite the section about Getopt::Long... to mention this
short/long mixture acceptance
But also typo on:
Getopt::Long section
------------------------------
The Getopt::Long module can handle the single character switches, bundled
single character swithces
s/swithces/switches/
ber 0, for isntance).
s/isntance/instance/
Another thing, you speak about boolean values(), required values (=),
multiple values(@) but I don't see nothing about optional values with value
(:).
Interactive and non interactive
------------------------------------------
Could be interesting to mention IO::Prompt which save you from the
complexities related to testing with -t
perl's Config
-----------------
To see if I'm a threaded perl:
#!/usr/bin/perl
use Config;
if ($Config{usethreads}) {
print "has thread support\n";
}
Regards,
Florian
2006/9/16, brian d foy <brian.d.foy at gmail.com>:
>
> I've been quiet about _Mastering Perl_ for a while: it took me a bit
> ot get over the conference season and get back to some serious work.
>
> This week I've been working on finishing off the configuration chapter:
>
>
> http://www252.pair.com/comdog/mastering_perl/Chapters/configuration.html
>
> I started, and mostly (mostly) finished a chapter on subroutine tricks:
>
>
> http://www252.pair.com/comdog/mastering_perl/Chapters/dynamic_subroutines.html
>
> I think I've also done most of the chapter on working with Pod, where
> I talk about Pod::Perldoc subclasses, Pod::Simple thingies, and lots
> of other stuff dealing with writing, testing, and transforming Pod:
>
>
> http://www252.pair.com/comdog/mastering_perl/Chapters/working_with_pod.html
>
> My next chapter will the one on subclassing, extending, and fixing
> modules, mostly dealing with adding your own flavor to modules you
> didn't write.
>
> --
> brian d foy <brian.d.foy at gmail.com>
> http://www.pair.com/~comdog/
> _______________________________________________
> Mastering-perl mailing list
> Mastering-perl at theperlreview.com
> http://five.pairlist.net/mailman/listinfo/mastering-perl
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://five.pairlist.net/pipermail/mastering-perl/attachments/20060920/62a6912e/attachment-0001.htm
More information about the Mastering-perl
mailing list