Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            print "==> $f->[0]\n"; #infix Arrow Operator dereferencing..
            #print "==> @{$f}[0]\n"; #another way of dereferencing too..(T
    +ry It)
    }
    
  2. or download this
    for (my $i=0;$i<=$#ary; $i++){   
        print "==>$ary[$i][0]\n";
       # print "==>@{$ary[$i]}[0]\n";
       # print "==>$ary[$i]->[0]\n";
        }
    
  3. or download this