Java code:
public void hello(String… names) {}
What’s the equivalent syntax in Kotlin? I looked for a while on the document site, but not found.
Java code:
public void hello(String… names) {}
What’s the equivalent syntax in Kotlin? I looked for a while on the document site, but not found.
vararg names: String
Thank you!