```package <http://org.sdkotlin.meetup.firstwednes...
# san-diego
l
Copy code
package <http://org.sdkotlin.meetup.firstwednesday.online|org.sdkotlin.meetup.firstwednesday.online>

import kotlinx.coroutines.*
import kotlinx.coroutines.flow.*

fun meetingAnnouncement(): Flow<String> = flow {
    //TODO: Make topic announcement
}

fun main() = runBlocking<Unit> {
    meetingAnnouncement().collect { topic -> println(topic) }
}
😂 3
i
Touche! Done. I had a few things in mind to present, and it came down to a last minute decision as to which were the most baked.
l
Emit received
👍 1