John W. Krahn am Freitag, 7. April 2006 01.09:
> D. Bolliger wrote:
> > btw, @04 is not a valid (array) variable name; they must not start with a
> > digit, as not keyword/builtin does.
>
> $ perl -Mwarnings -Mstrict -le' our @04 = 10 .. 14; print "@04"'
> 10 11 12 13 14
>
> You are probably thinki
D. Bolliger wrote:
>
> btw, @04 is not a valid (array) variable name; they must not start with a
> digit, as not keyword/builtin does.
$ perl -Mwarnings -Mstrict -le' our @04 = 10 .. 14; print "@04"'
10 11 12 13 14
You are probably thinking scalars and/or lexicals.
John
--
use Perl;
program
Mazhar am Donnerstag, 6. April 2006 11.48:
> thanks Raymond for the help it works,
> and what do u mean by variable interpolation
Hello Mazhar
It will help you a lot to know and use the documentation system of perl.
You can get an overview by typing (on the command line):
perldoc perl
(docs)
p