Help for this page

Select Code to Download


  1. or download this
    my $newyork;
    my $miami;
    ...
    } else {
      statement;
    }
    
  2. or download this
    while ( <DATA> ) {
      given( $_ ) {
    ...
        }
      }
    }
    
  3. or download this
    while ( <DATA> )
    {
    ...
        expr
      }
    }