Help for this page

Select Code to Download


  1. or download this
    $l_ref = \(1,2,3,4);
    
  2. or download this
    # perl -le '$l_ref = \(1,2,3,4); print $l_ref'
    SCALAR(0x8150310)
    # perl -le '$l_ref = \(1,2,3,4); print $$l_ref'
    4
    
  3. or download this
    $l_ref = [ 1,2,3,4 ];