INNER CODE UNIT · Kotlin
c
ArisGuimera/Android-Expert · CursoBasicoKotlin/src/main/kotlin/FunctionExample.kt:71
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")
}