Skip to content

Instantly share code, notes, and snippets.

@AkshayChordiya
Last active April 4, 2019 12:38
Show Gist options
  • Save AkshayChordiya/650f3091867d4270ef35fbf056db82f6 to your computer and use it in GitHub Desktop.
Save AkshayChordiya/650f3091867d4270ef35fbf056db82f6 to your computer and use it in GitHub Desktop.
Example of with function with return in Kotlin
val person = with(Person()) {
name = "Tony Stark"
age = 52
// More such stuff
this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment