Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
       return $str . $right if $add < 1;
       return ('0' x $add) . $str . $right;
    }
    
  2. or download this
    old: return $str if $add < 1;
    new: return $str . $right if $add < 1;