chen li [cl], on Friday, January 20, 2006 at 21:33 (-0800 (PST)) wrote
these comments:

cl> one array and xyz, 9 and 0 into another array. But I
cl> don't get what I expect. I just wonder what is wrong?

nothing is wrong, you wrote good script. But if you want print values,
use at beginning:

$|++; #dont buffer output

also learn what context is., If you want print array, try:

print "@array";
print @array;
$, = "-";
print @array;

for finding what you really have in variables use:

use Data::Dumper;

print Dumper [EMAIL PROTECTED];

-- 

 ...m8s, cu l8r, Brano.

[Any woman is dateable if you have the right tickets.]



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to