Vladyslav Sitalo
09/16/2018, 2:02 PMfun processStrings(vararg strings: String)...
When I try to call it from Java though it’s seen as a function that accepts an array of strings instead of vararg function.
Is there a way to make this function accept vararg from Java’s perspective?Nikky
09/16/2018, 2:11 PMString[] {"arguments", "here"}
at least i think thats how you do array literals in java, been a whileVladyslav Sitalo
09/16/2018, 2:29 PM