Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumKotlinFlow cold streamsSingle-choice MCQ

What is printed when this runs (note: there is no collect)?

val f = flow { println("start") emit(1) }.map { println("map $it") it * 10 } println("built")