Skip to content

Instantly share code, notes, and snippets.

@pencelab
Last active October 30, 2019 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pencelab/074579f4a06f8a16dd0ce16a8fb566ac to your computer and use it in GitHub Desktop.
Save pencelab/074579f4a06f8a16dd0ce16a8fb566ac to your computer and use it in GitHub Desktop.
fun sumSquareAsync() = async {
val r1 = async { myRandomNumberSuccess(OPERATION_SQUARE) }
val r2 = async { myRandomNumberSuccess(OPERATION_SQUARE) }
val r3 = async { myRandomNumberSuccess(OPERATION_SQUARE) }
val sum = r1.await() + r2.await() + r3.await()
log("$OPERATION_SQUARE: Sum = $sum")
sum * sum
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment