Help for this page

Select Code to Download


  1. or download this
    my @array = qw(A R N D);
    # is equivalent to
    ...
    $array[1] = 'R';
    $array[2] = 'N';
    $array[3] = 'D';
    
  2. or download this
    $array[0] = 'B';