- or download this
my %hash;
tie %hash, 'main';
$hash{'test'} = bless [], 'Test';
- or download this
$hash{'test'} += 3;
- or download this
my $test = bless [], 'Test';
$test += 3;
...
tie %hash, 'main';
$hash{'test'} = bless [], 'Test';
$hash{'test'} = $hash{'test'} + 3;
- or download this
#!/usr/bin/env perl
...
$hash{'test'} += 3;
is(3, $hash{'test'}[0]);
}; # ???