Help for this page

Select Code to Download


  1. or download this
    sub def { 
        return defined $_[0] ? $_[0] : def($_[1],""); 
    }
    
  2. or download this
    sub def {
      (grep defined, @_, "")[0];
    }