Title: Hash table problem.

Hello all,

  I have the following piece of code

my @a;
my %hash_table= ();
$hash_table{$Parameter0} = substr( $_, $-[0], $+[0]-$-[0] );
$hash_table{$Parameter1} = "test";
and now I want to save this hash_table as the first entry in this array a
Anyone has any iddea of how can I do that ?
 push @a,,,,

Thanks!
Nicu

 

Reply via email to