INNER CODE UNIT · Kotlin
b
ArisGuimera/Android-Expert · CursoBasicoKotlin/src/main/kotlin/FunctionExample.kt:70
val b = a * a
val c = a * a
val d = a * a
}
fun calculateFinalPrice(price: Double): Double {
//logica
return price
}
fun calculateFinalPrice(price: Double, discountPercentage: Double): Double {
//logica
return price
}
fun showProductId(productId: Int) {
print("La id es $productId")
}