Skip to content

Instantly share code, notes, and snippets.

@shruti-basil-hs
Created December 22, 2017 17:44
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 shruti-basil-hs/01c6be1a9897a9363675e5cb47892ff7 to your computer and use it in GitHub Desktop.
Save shruti-basil-hs/01c6be1a9897a9363675e5cb47892ff7 to your computer and use it in GitHub Desktop.
Person(name).apply { foo() };
//Equivalent 4 line Java code
Person getFoo(String name) {
Person person = new Person(name);
person.foo();
return person;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment