- or download this
use constant BIRD=>'footchicken';
- or download this
{ BIRD => 'Valery' }
- or download this
{ BIRD() => 'Valery' }
{ BIRD, 'Valery' }
- or download this
{ +BIRD => 'Valery' }
- or download this
use strict;
use warnings;
use Data::Dumper;
use constant { BIRD => 'footchicken' };
print Dumper(+{ +BIRD => 'Valery' });
- or download this
$VAR1 = {
'BIRD' => 'Valery'
};