Help for this page

Select Code to Download


  1. or download this
    @rray = ( 'foo', 'bar', 'spam', 'eggs' );
    $[=3;
    $calar = $[;
    print $rray[$calar] while $calar++<@rray;
    
  2. or download this
    @rray = ( 'foo', 'bar', 'spam', 'eggs' );
    $[=$#rray
    $calar = $[;
    print $rray[$calar] while $calar++<@rray;