if i pass a `varargs args` to another fun acceptin...
# announcements
d
if i pass a
varargs args
to another fun accepting a
varargs
then I must pass it as
*args
.. but what about java, if I'm calling a kotlin fun expecting to be passed a
varargs
from java then I should just send it as
kotlinfun(args)
?