Anshul Jain
Results
1
issues of
Anshul Jain
`fun main() { Observable.just(returnInt()) } fun returnInt() : Int { println("inside return block") return 2; }` Even without subscribing to the Observable.just(), it prints the statement, which means it is...