Help for this page

Select Code to Download


  1. or download this
      DB<2> $a = [A..Z]
    
    ...
      DB<4> x $a[0], $a->[0]
    0  'a'
    1  'A'
    
  2. or download this
    my $a[];       #=> @a := @$a
    $a = [A..Z];
    print "@a";    # A B C ... 
    print $a[0];   # A