how could I convert the following code to Kotlin? ...
# announcements
a
how could I convert the following code to Kotlin? while((bytesRead = in.read(buffer)) > 0 ) { out.write(buffer, 0, bytesRead); }