Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    my @arr=('a', 'b', 'c');
    my @aroa;
    push(@aroa, [@arr]);
    
  2. or download this
    print"$aroa[0][0]\n";
    
  3. or download this
    print"$aroa[0]\n";
    
  4. or download this
    print"@$aroa[0]\n";