in reply to Hash key/value
What exactly do you mean by "not recognized"? Seems to work fine:
#!/usr/bin/perl $something{'that\'s it'} = "foo"; $something{'thats it\!'} = "bar"; use Data::Dumper; print Dumper \%something; __END__ $VAR1 = { 'that\'s it' => 'foo', 'thats it\\!' => 'bar' };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Hash key/value
by FireBird34 (Pilgrim) on Nov 26, 2009 at 19:27 UTC | |
by GrandFather (Saint) on Nov 26, 2009 at 20:57 UTC | |
by AnomalousMonk (Archbishop) on Nov 26, 2009 at 21:00 UTC |