Jeff Pang schreef:

> print Dumper @sort;


I always go for the whole thing:

  print Data:Dumper->Dump( [EMAIL PROTECTED], [qw(*sort)] );


  perl -MData::Dumper -e '
@s = sort( 1, 7, 3, 2, 5 ) ;
print Data::Dumper->Dump( [ [EMAIL PROTECTED] ], [ qw(*s) ] )
'
@s = (
       1,
       2,
       3,
       5,
       7
     );

-- 
Affijn, Ruud

"Gewoon is een tijger."



-- 
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