On Mon, Nov 2, 2009 at 10:36 AM, Telemachus <telemac...@arpinum.org> wrote:

> On Mon Nov 02 2009 @  9:33, Parag Kalra wrote:
> > Hey Folks,
> >
> > This thread was about book - 'Learning Perl Student Workbook' and not the
> > book - 'Learning Perl'
> >
> > So is there a way we can buy genuine/official/legal ebook version of
> > 'Learning Perl Student Workbook' from somewhere.
> >
> > If yes then please redirect us to the same.
> >
> > Cheers,
> > Parag
>



> I feel a bit like Echo, but here's my third time saying this in one thread.
> You can get the workbook from Amazon here:
>
>
> http://www.amazon.com/Learning-Perl-Student-Workbook-brian/dp/0596009968/ref=sr_1_1?ie=UTF8&s=books&+qid=1257076787&sr=8-1
>
> --
> To unsubscribe, e-mail: beginners-unsubscr...@perl.org
> For additional commands, e-mail: beginners-h...@perl.org
> http://learn.perl.org/
>
>
>

use strict;
use warnings;

$\ = "\n";

my @book_types = ('hard cover book', 'soft cover book', 'ebook');

if ('soft cover book' eq 'ebook') {
    print 'yes';
} else {
    print 'no';
}

--output:--
no

Reply via email to