Skip to content

Instantly share code, notes, and snippets.

@cioccarellia
Last active July 29, 2020 14:46
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 cioccarellia/47a00703cced75b4788dbc8c4be98baa to your computer and use it in GitHub Desktop.
Save cioccarellia/47a00703cced75b4788dbc8c4be98baa to your computer and use it in GitHub Desktop.
paintBucket.run {
fillWith(Color.LIME)
mix()
println(currentPaintColor)
this
}
paintBucket.let {
it.fillWith(Color.MAGENTA)
it.mix()
println(it.currentPaintColor)
it
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment