Help for this page

Select Code to Download


  1. or download this
      if ($choice eq 'a'){
        ...
      }
    
  2. or download this
    if (CONDITION1) {
        ...
    ...
    if (CONDITION2) {
        ...
    }
    
  3. or download this
    if (CONDITION1) {
        ...
    ...
            ...
        }
    }
    
  4. or download this
    if (CONDITION1) {
        ...
    ...
    else {
        ...
    }
    
  5. or download this
    $ perl -E 'my @x = qw{Jeff JEFF jEfF}; say lc $_ for @x'
    jeff
    jeff
    jeff
    
  6. or download this
    $ perl -E 'my @x = qw{Jeff JEFF jEfF}; say ucfirst lc $_ for @x'
    Jeff
    Jeff
    Jeff
    
  7. or download this
    $ perl -E 'my @x = qw{Jeff JEFF jEfF}; say ucfirst $_ for @x'
    Jeff
    JEFF
    JEfF
    
  8. or download this
    #!/usr/bin/env perl
    
    ...
            Clark  => 'Jon',
        );
    }
    
  9. or download this
    
        Menu Selections
    ...
    Enter menu selection: e
    Exiting ...
    Done!