Help for this page

Select Code to Download


  1. or download this
    print ${ $hash_ref }{ $key };
    
  2. or download this
    print ${ $hash_ref{ $key } };
    
  3. or download this
    sub x{ print $$_[0][1] };;
    
  4. or download this
    x( [['a','b'],['c','d']] );;
    
    x( ['a','b'],['c','d'] );;
    
  5. 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 ...
    
  6. or download this
    sub x{ print $_[0]->[1] };;
    
    xx( [['a','b'],['c','d']] );;
    
    xx( ['a','b'],['c','d'] );;
    
  7. or download this
    x( [['a','b'],['c','d']] );;
    ARRAY(0x3c6e3b8)
    
    x( ['a','b'],['c','d'] );;
    b