Help for this page

Select Code to Download


  1. or download this
    sub shall_we {
        my $ans = prompt(
    ...
        );
        return $ans ? 0+$ans : undef;
    }
    
  2. or download this
    sub shall_we {
        local $_;
    ...
        );
        return $_;
    }