Help for this page

Select Code to Download


  1. or download this
    if (expression) {
        die "reason";
    ...
    else {
        ...
        }
    
  2. or download this
    lc $first_number eq "q" and die "Goodbye\n";
    
    ... rest of code
    
  3. or download this
    die "Goodbye\n" if lc $first_number eq "q";