Help for this page

Select Code to Download


  1. or download this
    sub _min
    {
    ...
               ?( $_[0] < $_[2] ? $_[0] : $_[2] )
               :( $_[1] < $_[2] ? $_[1] : $_[2] );
    }