Skip to content

Instantly share code, notes, and snippets.

@MasoudFallahpour
Created July 22, 2022 21:13
Show Gist options
  • Save MasoudFallahpour/bcf98170e6d175be3bed2ba35552725f to your computer and use it in GitHub Desktop.
Save MasoudFallahpour/bcf98170e6d175be3bed2ba35552725f to your computer and use it in GitHub Desktop.
class User {
var firstName: String by Delegate()
var lastName: String by Delegate()
}
fun main() {
val user = User().apply {
firstName = "John"
lastName = "Doe"
}
val firstName = user.firstName
val lastName = user.lastName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment