- or download this
use constant {
zed => 0,
...
repos => (qw(oss non-oss debug)),
two => 2,
};
- or download this
{
zed => 0,
...
repos => (qw(oss non-oss debug)),
two => 2,
}
- or download this
c:\@Work\Perl\monks>perl -wMstrict -MData::Dumper -le
"print Dumper {
...
'zed' => 0,
'two' => 2
};
- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"use constant [ qw(a b c d) ];
...
print A;
"
bcd