✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle est la sortie console de ce programme ?
fun ditBonjour(nom: String, pasFrog: Boolean) {
if (pasFrog) {
println("Hello $nom")
} else {
println("Bonjour $nom")
}
}
fun main() {
ditBonjour("Miky", false)
}