Medium Operators
Expand with FlatMap
Create a Flux emitting "Hello", "World". Use flatMap to split each word into individual characters (as separate emissions). Subscribe and print each character.
flatMap() transforms each element into a Publisher, then merges the inner publishers into a single Flux.
Expected
H e l l o W o r l d
Main.kt