Created
October 18, 2020 12:04
-
-
Save chaxiu/c3568dd1cf342a7df69e6cec29531c3d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suspend fun testCoroutine() { | |
log("start") | |
val user = getUserInfo() | |
log(user) | |
val friendList = getFriendList(user) | |
log(friendList) | |
val feedList = getFeedList(friendList) | |
log(feedList) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment