Help for this page

Select Code to Download


  1. or download this
    foreach $_(@F)  # For each value in the list called @F
    {
        # Do stuff...
    }
    
  2. or download this
    if ($F[6])    # If the seventh individual value in @F is true
    {
        # Do stuff
    }