Skip to content

Instantly share code, notes, and snippets.

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