Hi,
I tried to create a function of "+", so after creating while calling the function showing below error. Could you please help me out?
scala> def +(FirstValue: Int, SecondValue: Int): Int = FirstValue+SecondValue
$plus: (FirstValue: Int, SecondValue: Int)Int
scala> +(2,5)
<console>:24: error: value unary_+ is not a member of (Int, Int)
+(2,5)
^