INNER CODE UNIT · Kotlin
d
ArisGuimera/Android-Expert · CursoBasicoKotlin/src/main/kotlin/FunctionExample.kt:72
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")
}
fun showProductId(productId: String) {