Help for this page

Select Code to Download


  1. or download this
    @list = qw (one two three);
    %args = ( arg1 => 'string', arg2 => 5, arg3 => \@list );
    
    ...
    sub sub1 {
        print "$_\n" for @_;
    }
    
  2. or download this
    arg1
    string
    arg2
    5
    arg3
    ARRAY(0x17656b4)