What is this in Kotlin fun max(num1 : Int, num2 : Int): Int = if(num1>num2) num1 else num2 All Questions › Category: Kotlin › What is this in Kotlin fun max(num1 : Int, num2 : Int): Int = if(num1>num2) num1 else num2 0 Vote Up Vote Down chetan shidling asked 4 years ago fun max(num1 : Int, num2 : Int): Int = if(num1>num2) num1 else num2 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago It is function for the if-else statement to find the maximum value.