Help for this page

Select Code to Download


  1. or download this
    @list = qw( a b c d e f );
    
  2. or download this
    for $el (@list) {
       print "$el\n";
    }
    
  3. or download this
    for $el1, $el2 (@list) {
       print "$el1 - $el2\n";
    }