Help for this page

Select Code to Download


  1. or download this
    for (@names) {
       # Use $_ here
    }
    
  2. or download this
    for $_ (@names) {
       # Use $_ here
    }
    
  3. or download this
    for my $name (@names) {
       # Use $name here
    }