- or download this
[
$var1,
undef,
...
'bar' => $var3
}
];
- or download this
my $unknown = [ undef, undef, $var ];
- or download this
my @structures = (
[ qw/ 1 2 3 / ],
[ qw/ this that other / ],
[ qw/ un deux trois / ],
);
- or download this
foreach my $structure (@structures) {
bind($unknown, $structure);
print $var->value;
}
- or download this
my $struct = [
'whaa!',
undef,
...
];
my $path = "[2][2]{foo}";
$var->bind( eval "\$struct->$path" );
- or download this
foreach my $path (find_logic_var($unknown_struct)) {
push @paths => $path;
}