- or download this
print ${ $hash_ref }{ $key };
- or download this
print ${ $hash_ref{ $key } };
- or download this
sub x{ print $$_[0][1] };;
- or download this
x( [['a','b'],['c','d']] );;
x( ['a','b'],['c','d'] );;
- or download this
x( [['a','b'],['c','d']] );;
Use of uninitialized value in print at ...
x( ['a','b'],['c','d'] );;
Use of uninitialized value in print at ...
- or download this
sub x{ print $_[0]->[1] };;
xx( [['a','b'],['c','d']] );;
xx( ['a','b'],['c','d'] );;
- or download this
x( [['a','b'],['c','d']] );;
ARRAY(0x3c6e3b8)
x( ['a','b'],['c','d'] );;
b