Skip to content

Instantly share code, notes, and snippets.

@uzilan
Created June 7, 2022 15:35
Show Gist options
  • Save uzilan/72a5e4b43d7cbfa287d730bd86af4139 to your computer and use it in GitHub Desktop.
Save uzilan/72a5e4b43d7cbfa287d730bd86af4139 to your computer and use it in GitHub Desktop.
fun alsoExample() {
val address = "Someone somewhere 12345"
val stamp = Stamp(50.0)
val pack = Package(address, stamp)
MailService.sendPackage(pack).also {
informCustomer(it.address)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment