show/hide this revision's text 2 edited tags; edited title

Is there any way to use a "constant" as hash key in perlPerl?

show/hide this revision's text 1

Is there any way to use a "constant" as hash key in perl?

Is there any way to use a constant as a hash key?

For example:

use constant X => 1;

my %x = (X => 'X');

The above code will create a hash with "X" as key and not 1 as key. Whereas, I want to use the value of constant X as key.

    Post Made Community Wiki by Community