Slide 11
Slide 11 text
Functions
Swift
func showAlert(title: String, _ description: String? = nil) {}
showAlert(title: "Hello Lugano!", "Second best city in Switzerland")
showAlert(title: "Hello Lugano!")
Kotlin
fun showAlert(title: String, description: String? = null) {}
showAlert("Hello Lugano!", "Second best city in Switzerland")
showAlert(title = "Hello Lugano!")