A simple test: ``` val observable = asyncRx { ...
# coroutines
e
A simple test:
Copy code
val observable = asyncRx {
            var result = ""
            for (s in Observable.just("O", "K")) {
                result += s
            }
            result
        }
Produces an observable that emits a single String “OK"