in reply to Re^2: Recover a path from a config file
in thread Recover a path from a config file
Yes . Much for me. I forgot output:
When i do :
my $firstName = $config->{name};
I get the following output :
Use of uninitialized value $firstName in print atline 115.
And when i do that :
my $firstName = ${$config->{programs}}[1];
i get output below :
HASH(0x3e25178)
If i do :
my $firstName = ${$config->{programs}}[0];
i obtain in my output:
VIKTOR DESCRIPTION PRODUCT
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Recover a path from a config file
by hippo (Archbishop) on Jun 07, 2016 at 14:57 UTC | |
by Chaoui05 (Scribe) on Jun 07, 2016 at 15:31 UTC |