Hi again :slightly_smiling_face:, I continued with...
# coroutines
l
Hi again 🙂, I continued with my coroutines experiments and to put it simply, here is my code: https://pastebin.com/pGgqgh1c The expected result was e.g.: Sending request 1 Sending request 2 Sending request 3 Received response for 1 Received response for 2 Received response for 3 Total length: 684 But instead I got: Sending request 1 Received response for 1 Sending request 2 Received response for 2 Sending request 3 Received response for 3 Total length: 684 What am I doing wrong? 🙂