Help for this page

Select Code to Download


  1. or download this
     
    use strict;
    use warnings;
    ...
    print "Ex.:argument1 $arg1\n";
    print "argument deref @$arg1\n";
    # Passing to &someothersub($arg1, $arg2, $arg3);
    
  2. or download this
    for my $aref ( @$AoAref ) {
        print "\t [ @$aref ],"; # not exactly sure what i'm doing here...
    }