Help for this page

Select Code to Download


  1. or download this
    # Command-line
    (my $x = shift) or die $syntax;
    (my $y = shift) or die $syntax;
    
  2. or download this
    die $syntax if ! defined (my $x = shift);