Bonjour tout le monde !
J'aurais besoin d'un coup de main pour comprendre pourquoi mon test perl fonctionne ainsi :
#!/usr/bin/perl -swl
my $scalar=45;
my @table=[5, 6, 7];
my %hash=("test"=>"TEST", "abc"=>"ABC", "ghi"=>"GHI");
my @final=[ $scalar, \@table, \%hash];
sub findHashValue{
my ($contref,$key)=@_;
my @container=@$contref
(…)