Help for this page

Select Code to Download


  1. or download this
    $youngMan = YoungMan->new( -from => "Nantucket" );
    
  2. or download this
    if ($you{understand}) {
        @things = qw(such as they are);
    ...
    else {
        @things = qw(such as they are);
    }
    
  3. or download this
    use strict;
    
    ...
    elsif (not $you{understand}) {
        @things = @things;
    }
    
  4. or download this
    @things = @things if $you{understand};
    @things = @things if not $you{understand};
    
  5. or download this
    @things = ($you{understand}) ? @things : @things;
    
  6. or download this
    @things = @things;
    
  7. or download this
    @things;
    
  8. or download this
  9. or download this
    $ perl -e ''