Skip to content

Instantly share code, notes, and snippets.

@sliskiCode
Created October 21, 2016 10:23
Show Gist options
  • Save sliskiCode/82d0324f516f4c0019f14712a2fee101 to your computer and use it in GitHub Desktop.
Save sliskiCode/82d0324f516f4c0019f14712a2fee101 to your computer and use it in GitHub Desktop.
Builders in Kotlin. Gist 1
import lombok.Builder;
@Builder
class Person {
private final String name;
private final String surname;
private final int age;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment