dimsuz
val flow1 = flowOf { emit(1); delay(3000); emit(2) } launch { flow1.collect() flow2.collect() }
Joffrey