Help for this page

Select Code to Download


  1. or download this
    while my $term (<F1>) {
    
  2. or download this
    while ( my $term = <F1> ) {
    
  3. or download this
    foreach my $source (<F2>) {
    
  4. or download this
    while ( my $source = <F2> ) {