Help for this page

Select Code to Download


  1. or download this
    ( my $name = $ARGV[0] ) && length $ARGV[0] > 2 or die "Usage: `$0 <nam
    +e>` (min. 3 letters)";
    
  2. or download this
    my $name = $ARGV[0]
    
  3. or download this
    && length $ARGV[0] > 2
    
  4. or download this
    while ( 1 ) { # runs forever
        ...
    ...
    if ( foo() ) { # only runs if foo() returns something
        ...
    }