Easy Hot vs Cold Publishers
Cold Publisher Behavior
Create a cold Flux that emits "A", "B", "C". Subscribe to it twice, and for each subscriber print with a prefix: "Sub1: A" and "Sub2: A". This demonstrates that cold publishers replay for each subscriber.
Expected
Sub1: A Sub1: B Sub1: C Sub2: A Sub2: B Sub2: C
Main.kt