Help for this page

Select Code to Download


  1. or download this
      sub weird2number {
        my $text = shift;
    ...
        no warnings "numeric";
        return $text + 0;
      }
    
  2. or download this
      sub number2weird {
        my $number = shift;
    ...
          or warn qq{Failed to make "$text" weird};
        return $text;
      }