How to return multiple values from a function in Scala

1 Answer

0 votes
def getPriceInfo: (String, Double, Double) = {
  ("Minecraft for Windows", 29.99, 25.00) // Tuple
}

val (product, currentPrice, bidPrice) = getPriceInfo

println(s"Product: $product, Current Price: $currentPrice, Bid Price: $bidPrice")



   
/*
           
run:
     
Product: Minecraft for Windows, Current Price: 29.99, Bid Price: 25.0
       
*/

 



answered Sep 19, 2024 by avibootz
...