in reply to Quotes in Hashes of Array
DB<1> %list = ( test => [ qw#aa bb# ] ) DB<2> p $list{test}[0] aa DB<3> x %list 0 'test' 1 ARRAY(0x86fe158) 0 'aa' 1 'bb'
Cheers Rolf
UPDATE: It really sucks that the perldebugger can't handle lexicals...
... seems that every line is evaled seperately such that the scope ends with the line.
... took me a wile to understand why
has no effect!DB<1> my %list = ( test => [ qw#aa bb# ] )
|
|---|