Help for this page

Select Code to Download


  1. or download this
    perl -E'@n=7..9;$x=$n[i];say$x'
    7
    
  2. or download this
    perl -MO=Deparse -E'@n=7..9;$x=$n[i];say$x'
    @n = 7..9;
    $x = $n[0];
    say $x;
    -e syntax OK