Skip to content

Instantly share code, notes, and snippets.

@NsAveek
Created November 21, 2019 16:11
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 NsAveek/a0caeb84a798da644bea00a7199fd779 to your computer and use it in GitHub Desktop.
Save NsAveek/a0caeb84a798da644bea00a7199fd779 to your computer and use it in GitHub Desktop.
// Without run
fun printPersonName(person : Person){
print(person.name)
}
// With run
fun printPersonName(person : Person) = person.run{
print(name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment