Slide 30
Slide 30 text
Variable Number of Arguments
This works great
helloFunctions("yay!", "Droidcon Boston", "Kotlin", "Android")
helloFunctions("Droidcon Boston", "Kotlin", "Android", exlamation = "yay!")
// both output:
// yay!, Droidcon Boston
// yay!, Kotlin
// yay!, Android
@n8ebel #droidconbos 30