Help for this page

Select Code to Download


  1. or download this
    my ($price, $floor) = get_price_floor() || 0;
    
    sub get_price_floor {
      return (10, 8);
    }
    
  2. or download this
    my ($price, $floor) = (get_price_floor() || 0);
    
  3. or download this
    my ($price, $floor);
    (($price, $floor) = get_price_floor()) ||
        (($price, $floor) = ( 0, 0));