Help for this page

Select Code to Download


  1. or download this
    my $R="foo";
    print "${R}[0]\n";
    
  2. or download this
    [0]
    
  3. or download this
    my $R = "foo";
    my $R[0] = "bar";
    print "${R}\[0]\n";
    print "${R[0]}\n";