OK this listserve is great ;) thanks
- Original Message -
From: "Gary Hawkins" <[EMAIL PROTECTED]>
To: "rabs" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Sunday, January 13, 2002 2:43 AM
Subject: RE: Another simple program which doesnt work
Jeff 'Japhy' Pinyan wrote:
>
> On Jan 12, Gary Hawkins said:
>
> >> This newsgroup is great. I am learning alot from just reading the post
> >> here. I hope someone will be able to help with this query.
> >
> >Me too. But I learned a new word yesterday, pedantic. Just wanted to try it
> >out,
Gary wrote:
> Listserves: Email lists are read in an email program or on the web and
are
> handled by SMTP.
> Newsgroups: Hosted on news servers, they are read by newsgroup software
or on
> the web, and are handled by NNTP.
>
> So this is a listserve. Forgive me, I'm a Virgo.
>
> Listserve, we
On Jan 12, Gary Hawkins said:
>> This newsgroup is great. I am learning alot from just reading the post
>> here. I hope someone will be able to help with this query.
>
>Me too. But I learned a new word yesterday, pedantic. Just wanted to try it
>out, here goes. :<
There is a newsgroup interf
ple program which doesnt work.
This newsgroup is great. I am learning alot from just reading the post
here. I hope someone will be able to help with this query.
-
#!/usr/bin/perl-w
print "please enter a word then press enter\n";
@a= ;
$L =@a;
for ($i=0; $i<=$L; $i
> This newsgroup is great. I am learning alot from just reading the post
> here. I hope someone will be able to help with this query.
Me too. But I learned a new word yesterday, pedantic. Just wanted to try it
out, here goes. :<
Listserves: Email lists are read in an email program or on the
On Jan 13, rabs said:
>#!/usr/bin/perl-w
>print "please enter a word then press enter\n";
>@a= ;
>$L =@a;
>for ($i=0; $i<=$L; $i++){
>print $a[$i];
>}
Your loop should be
for ($i = 0; $i < $L; $i++) { ... }
Notice <= should be <. It should also be noted that the idiomatic way of
looping ove
This newsgroup is great. I am learning alot from just reading the post
here. I hope someone will be able to help with this query.
-
#!/usr/bin/perl-w
print "please enter a word then press enter\n";
@a= ;
$L =@a;
for ($i=0; $i<=$L; $i++){
print $a[$i];
}
print "\n there are $L varib